Guest User

Untitled

a guest
Mar 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. type Query {
  2. user(id: ID): User
  3. }
  4. type User {
  5. id: ID!
  6. items: [Item]
  7. }
  8. type Item {
  9. id: ID!
  10. name: String
  11. }
Add Comment
Please, Sign In to add comment