| 123456789101112131415161718192021222324252627282930313233 | # ===============================================# CONTRIBUTE# ===============================================extend type Query {  contribute: ContributeQuery}# -----------------------------------------------# QUERIES# -----------------------------------------------type ContributeQuery {  contributors: [ContributeContributor]}# -----------------------------------------------# TYPES# -----------------------------------------------type ContributeContributor {  company: String!  currency: String!  description: String!  id: Int!  image: String!  name: String!  profile: String!  tier: String!  totalDonated: Int!  twitter: String!  website: String!}
 |