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