stacker.news/api/typeDefs/growth.js

17 lines
298 B
JavaScript
Raw Normal View History

2022-06-10 19:20:33 +00:00
import { gql } from 'apollo-server-micro'
export default gql`
extend type Query {
registrationGrowth: [TimeNum!]!
activeGrowth: [TimeNum!]!
itemGrowth: [TimeNum!]!
spentGrowth: [TimeNum!]!
2022-06-22 21:13:51 +00:00
earnedGrowth: [TimeNum!]!
2022-06-10 19:20:33 +00:00
}
type TimeNum {
time: String!
num: Int!
}
`