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.

33 lines
684 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. company: String!
  18. currency: String!
  19. description: String!
  20. id: Int!
  21. image: String!
  22. name: String!
  23. profile: String!
  24. tier: String!
  25. totalDonated: Int!
  26. twitter: String!
  27. website: String!
  28. }