Created
January 31, 2021 19:55
-
-
Save 0916dhkim/133dc9f6e8b47b8e32c083135600ac72 to your computer and use it in GitHub Desktop.
Example Schema
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! | |
email: String! | |
posts: [Post!]! | |
} | |
type Post { | |
id: ID! | |
title: String! | |
content: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment