stacker.news/api/typeDefs/growth.js

23 lines
484 B
JavaScript
Raw Normal View History

import { gql } from 'graphql-tag'
2022-06-10 19:20:33 +00:00
2023-05-17 22:56:34 +00:00
export default gql`
2022-06-24 15:38:00 +00:00
type NameValue {
name: String!
value: Int!
}
2023-05-18 23:41:56 +00:00
extend type Query {
registrationGrowth(when: String): [TimeData!]!
itemGrowth(when: String): [TimeData!]!
spendingGrowth(when: String): [TimeData!]!
spenderGrowth(when: String): [TimeData!]!
stackingGrowth(when: String): [TimeData!]!
stackerGrowth(when: String): [TimeData!]!
}
2022-12-01 21:31:04 +00:00
type TimeData {
2023-07-27 00:18:42 +00:00
time: Date!
2022-12-01 21:31:04 +00:00
data: [NameValue!]!
2022-06-24 15:38:00 +00:00
}
2022-06-10 19:20:33 +00:00
`