stacker.news/api/typeDefs/referrals.js

8 lines
151 B
JavaScript
Raw Normal View History

import { gql } from 'graphql-tag'
2022-12-19 22:27:52 +00:00
export default gql`
extend type Query {
referrals(when: String, from: String, to: String): [TimeData!]!
2022-12-19 22:27:52 +00:00
}
`