Skip to content

Instantly share code, notes, and snippets.

@nnance
Last active September 11, 2016 19:00
Show Gist options
  • Save nnance/9b7df67e9cfed8f244a32edd0ca05e0d to your computer and use it in GitHub Desktop.
Save nnance/9b7df67e9cfed8f244a32edd0ca05e0d to your computer and use it in GitHub Desktop.
interface Entity {
id: ID!
name: String
}
type RootQuery {
me: User
}
schema {
query: RootQuery
}
type User implements Entity {
id: ID!
name: String
age: Int
is_active: Boolean
friends: [User]!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment