Skip to content

Instantly share code, notes, and snippets.

@birk-astrup
Last active November 1, 2019 13:42
Show Gist options
  • Save birk-astrup/b6192103f3319c34e6da54031db9834f to your computer and use it in GitHub Desktop.
Save birk-astrup/b6192103f3319c34e6da54031db9834f to your computer and use it in GitHub Desktop.
Example graphql schema
type Query {
building_with_id(_id: ID!): Building
resident_with_id(_id: ID!): Resident
}
type Building {
id: ID!
buildYear: String!
residents: [Resident]
}
type Resident {
id: ID!
name: String!
age: Int!
family: [Resident]
building: Building
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment