Created
May 13, 2018 16:08
-
-
Save sorenbs/366cc135c958b412c4eae12b23d18112 to your computer and use it in GitHub Desktop.
Data model for the examples on prisma.io/features/graphql-api
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type User { | |
id: ID! @unique | |
name: String! | |
email: String! @unique | |
isAdmin: Boolean @default(value: "false") | |
posts: [Post!]! | |
} | |
type Post { | |
id: ID! @unique | |
createdAt: DateTime! | |
updatedAt: DateTime! | |
title: String! | |
author: User! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Putting in a response would also be a good idea?