Created
October 24, 2016 11:16
-
-
Save RafalFilipek/17e8a521c7e127109d9397b5e7902bb7 to your computer and use it in GitHub Desktop.
Lorem Ipsum GraphQL
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
| type Letter { | |
| value: String | |
| code: Int | |
| } | |
| type Word { | |
| value: String, | |
| letters: [Letter], | |
| } | |
| type Sentence { | |
| value: String, | |
| words: [Word] | |
| letters: [Letter] | |
| } | |
| type Lorem { | |
| value: String, | |
| sentences: [Sentence], | |
| words: [Word], | |
| letters: [Letter] | |
| } | |
| type Query { | |
| lorem: Lorem | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment