30 lines
		
	
	
		
			601 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			601 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
| # ===============================================
 | |
| # 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
 | |
| }
 |