rsnext/examples/with-relay-modern/schema/init-schema.graphql
2020-05-18 15:24:37 -04:00

7 lines
136 B
GraphQL

type BlogPost implements Node {
content: String!
createdAt: DateTime!
id: ID! @isUnique
title: String!
updatedAt: DateTime!
}