Guest User

Untitled

a guest
Feb 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. type Query {
  2. posts(
  3. where: PostWhereInput
  4. orderBy: PostOrderByInput
  5. skip: Int
  6. after: String
  7. before: String
  8. first: Int
  9. last: Int
  10. ): [Post]!
  11.  
  12. users(
  13. where: UserWhereInput
  14. orderBy: UserOrderByInput
  15. skip: Int
  16. after: String
  17. before: String
  18. first: Int
  19. last: Int
  20. ): [User]!
  21.  
  22. post(where: PostWhereUniqueInput!): Post
  23.  
  24. user(where: UserWhereUniqueInput!): User
  25.  
  26. postsConnection(
  27. where: PostWhereInput
  28. orderBy: PostOrderByInput
  29. skip: Int
  30. after: String
  31. before: String
  32. first: Int
  33. last: Int
  34. ): PostConnection!
  35.  
  36. usersConnection(
  37. where: UserWhereInput
  38. orderBy: UserOrderByInput
  39. skip: Int
  40. after: String
  41. before: String
  42. first: Int
  43. last: Int
  44. ): UserConnection!
  45.  
  46. node(id: ID!): Node
  47. }
Add Comment
Please, Sign In to add comment