34 lines
684 B
GraphQL
34 lines
684 B
GraphQL
|
# ===============================================
|
||
|
# 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!
|
||
|
}
|