17 lines
263 B
JavaScript
Raw Normal View History

2022-02-17 11:23:43 -06:00
import { gql } from 'apollo-server-micro'
export default gql`
extend type Query {
sub(name: ID!): Sub
}
type Sub {
name: ID!
createdAt: String!
updatedAt: String!
postTypes: [String!]!
rankingType: String!
baseCost: Int!
}
`