3a56782572
* add custom range option to top items page * add custom range option to profile page * add date filter option to chart pages * cleanup * fix x-axis date labels * date picker improvements * enhancements to custom date selection * remove unneeded condition --------- Co-authored-by: rleed <rleed1@pm.me> Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
14 lines
242 B
JavaScript
14 lines
242 B
JavaScript
import { gql } from 'graphql-tag'
|
|
|
|
export default gql`
|
|
extend type Query {
|
|
referrals(when: String, from: String, to: String): Referrals!
|
|
}
|
|
|
|
type Referrals {
|
|
totalSats: Int!
|
|
totalReferrals: Int!
|
|
stats: [TimeData!]!
|
|
}
|
|
`
|