contribute.graphql 601 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# ===============================================
# CONTRIBUTE
# ===============================================

extend type Query {
  contribute: ContributeQuery
}

# -----------------------------------------------
# QUERIES
# -----------------------------------------------

type ContributeQuery {
  contributors: [ContributeContributor]
}

# -----------------------------------------------
# TYPES
# -----------------------------------------------

type ContributeContributor {
22 23
  id: String!
  source: String!
24
  name: String!
25 26 27 28
  joined: Date!
  website: String
  twitter: String
  avatar: String
29
}