Skip to content

Instantly share code, notes, and snippets.

@abhiaiyer91
Created November 13, 2018 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhiaiyer91/6c632e75e46b1d65636e3d118828d214 to your computer and use it in GitHub Desktop.
Save abhiaiyer91/6c632e75e46b1d65636e3d118828d214 to your computer and use it in GitHub Desktop.
type User {
id: ID! @unique
email: String! @unique
posts: [Post!]!
name: String!
}
type Post {
id: ID! @unique
createdAt: DateTime!
title: String!
published: Boolean! @default(value: "false")
author: User!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment