Guest User

Untitled

a guest
Dec 17th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. type Dog {
  2. id: ID! @unique
  3. name: String!
  4. type: String!
  5. }
  6.  
  7. type User {
  8. id: ID! @unique
  9. name: String!
  10. password: String!
  11. dogs: [Dog!]!
  12. }
  13.  
  14. type AuthPayload {
  15. user: User
  16. token: String
  17. }
Add Comment
Please, Sign In to add comment