以下のURL
https://master.d1cb8uqtyd2rew.amplifyapp.com/
いろんな機能がまったくない。そのうち追加するかも
APIの型は以下のようになっておりまーす
type Thread @model {
id: ID!
title: String!
tags: [String]
Comments: [Comment] @connection(keyName: "byThreadId", fields: ["id"])
createdAt: AWSDateTime
updatedAt: AWSDateTime
}
type Comment
@model
@key(name: "byThreadId", fields: ["threadId", "createdAt"]) {
id: ID!
threadId: ID!
content: String!
createdAt: AWSDateTime
updatedAt: AWSDateTime
good: Int
}
githubはこちら
https://github.com/opvelll/nanasiAmplify