2021-04-17 13:15:18 -05:00

32 lines
646 B
JavaScript

import { gql } from 'apollo-server-micro'
export default gql`
extend type Query {
items: [Item!]!
item(id: ID!): Item
comments(parentId: ID!): [Item!]!
flatcomments(parentId: ID!): [Item!]!
root(id: ID!): Item
}
extend type Mutation {
createLink(title: String!, url: String): Item!
createDiscussion(title: String!, text: String): Item!
createComment(text: String!, parentId: ID!): Item!
}
type Item {
id: ID!
createdAt: String!
title: String
url: String
text: String
parentId: Int
user: User!
depth: Int!
sats: Int!
ncomments: Int!
comments: [Item!]!
}
`