rsnext/examples/with-grafbase/grafbase/schema.graphql
2022-11-15 19:18:31 +01:00

12 lines
161 B
GraphQL

type Post @model {
id: ID!
title: String!
slug: String! @unique
comments: [Comment]
}
type Comment @model {
id: ID!
message: String!
post: Post
}