Skip to content

Instantly share code, notes, and snippets.

@RafalFilipek
Created October 24, 2016 11:16
Show Gist options
  • Save RafalFilipek/17e8a521c7e127109d9397b5e7902bb7 to your computer and use it in GitHub Desktop.
Save RafalFilipek/17e8a521c7e127109d9397b5e7902bb7 to your computer and use it in GitHub Desktop.
Lorem Ipsum GraphQL
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