Skip to content

Instantly share code, notes, and snippets.

@skorth
Last active February 23, 2016 08:23
Show Gist options
  • Save skorth/fc74ce3f30bc8e60fbbb to your computer and use it in GitHub Desktop.
Save skorth/fc74ce3f30bc8e60fbbb to your computer and use it in GitHub Desktop.
type Query {
user: User
user(id: Int): User
}
type User {
name: String
profilePicture(size: Int = 50): ProfilePicture
}
type ProfilePicture {
width: Int
height: Int
url: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment