Skip to content

Instantly share code, notes, and snippets.

@0916dhkim
Created January 31, 2021 19:55
Show Gist options
  • Save 0916dhkim/133dc9f6e8b47b8e32c083135600ac72 to your computer and use it in GitHub Desktop.
Save 0916dhkim/133dc9f6e8b47b8e32c083135600ac72 to your computer and use it in GitHub Desktop.
Example Schema
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