Advertisement
Guest User

Untitled

a guest
May 16th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. type Link {
  2. id: ID! @id
  3. createdAt: DateTime! @createdAt
  4. description: String!
  5. url: String!
  6. postedBy: User
  7. votes: [Vote!]!
  8. }
  9.  
  10. type User {
  11. id: ID! @id
  12. name: String!
  13. email: String! @unique
  14. password: String!
  15. links: [Link!]!
  16. votes: [Vote!]!
  17. }
  18.  
  19. type Vote {
  20. id: ID! @id
  21. link: Link!
  22. user: User!
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement