Last active
June 23, 2017 20:28
-
-
Save schroedermatt/d68cdee086f1784980dfcd58972f5a53 to your computer and use it in GitHub Desktop.
schema for the zoo-graphql-example Spring Boot app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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