feat: list sponsors + contributors on contribute admin page

This commit is contained in:
Nicolas Giard
2018-09-22 11:27:48 -04:00
parent 925b3e1550
commit 0bd9c36db5
4 changed files with 156 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
# ===============================================
# 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!
}