Skip to content

Instantly share code, notes, and snippets.

@schroedermatt
Last active June 23, 2017 20:28
Show Gist options
  • Select an option

  • Save schroedermatt/d68cdee086f1784980dfcd58972f5a53 to your computer and use it in GitHub Desktop.

Select an option

Save schroedermatt/d68cdee086f1784980dfcd58972f5a53 to your computer and use it in GitHub Desktop.
schema for the zoo-graphql-example Spring Boot app
# Keeper
{
id: Long,
name: String,
animals: Animal[]
}
# Animal
{
id: Long,
name: String,
type: String,
birthdate: Instant
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment