| 1234567891011121314151617181920212223242526272829 | # ===============================================# CONTRIBUTE# ===============================================extend type Query {  contribute: ContributeQuery}# -----------------------------------------------# QUERIES# -----------------------------------------------type ContributeQuery {  contributors: [ContributeContributor]}# -----------------------------------------------# TYPES# -----------------------------------------------type ContributeContributor {  id: String!  source: String!  name: String!  joined: Date!  website: String  twitter: String  avatar: String}
 |