23 lines
502 B
JavaScript
23 lines
502 B
JavaScript
import { gql } from 'apollo-server-micro'
|
|
|
|
// 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!]!
|
|
// }
|
|
|
|
export default gql`
|
|
type NameValue {
|
|
name: String!
|
|
value: Int!
|
|
}
|
|
|
|
type TimeData {
|
|
time: String!
|
|
data: [NameValue!]!
|
|
}
|
|
`
|