Skip to content

Instantly share code, notes, and snippets.

@grrinchas
Created January 2, 2018 19:04
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 grrinchas/efdce84d53117e4af42e2393c8723c2d to your computer and use it in GitHub Desktop.
Save grrinchas/efdce84d53117e4af42e2393c8723c2d to your computer and use it in GitHub Desktop.
type User @model {
id: ID! @isUnique
createdAt: DateTime!
updatedAt: DateTime!
auth0UserId: String! @isUnique
email: String! @isUnique
}
type Post @model {
id: ID! @isUnique
createdAt: DateTime!
updatedAt: DateTime!
title: String!
body: String!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment