You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
601 B

  1. # ===============================================
  2. # CONTRIBUTE
  3. # ===============================================
  4. extend type Query {
  5. contribute: ContributeQuery
  6. }
  7. # -----------------------------------------------
  8. # QUERIES
  9. # -----------------------------------------------
  10. type ContributeQuery {
  11. contributors: [ContributeContributor]
  12. }
  13. # -----------------------------------------------
  14. # TYPES
  15. # -----------------------------------------------
  16. type ContributeContributor {
  17. id: String!
  18. source: String!
  19. name: String!
  20. joined: Date!
  21. website: String
  22. twitter: String
  23. avatar: String
  24. }