2023-07-23 15:08:43 +00:00
|
|
|
import { gql } from 'graphql-tag'
|
2022-02-17 17:23:43 +00:00
|
|
|
|
|
|
|
export default gql`
|
|
|
|
extend type Query {
|
2023-07-23 15:08:43 +00:00
|
|
|
sub(name: String): Sub
|
2023-05-01 20:58:30 +00:00
|
|
|
subLatestPost(name: String!): String
|
2022-02-17 17:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Sub {
|
2023-05-01 20:58:30 +00:00
|
|
|
name: String!
|
2023-07-27 00:18:42 +00:00
|
|
|
createdAt: Date!
|
|
|
|
updatedAt: Date!
|
2022-02-17 17:23:43 +00:00
|
|
|
postTypes: [String!]!
|
|
|
|
rankingType: String!
|
|
|
|
baseCost: Int!
|
|
|
|
}
|
|
|
|
`
|