Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. # This is just the base schema shared by the two options below.
  2.  
  3. type User {
  4. name: String
  5. friendships: FriendshipConnection
  6. }
  7.  
  8. type Friendship {
  9. establishedAt: String
  10. withUser: User
  11. }
  12.  
  13. type Query {
  14. me: User
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement