-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtask.js
52 lines (36 loc) · 789 Bytes
/
task.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const {gql} = require('apollo-server-express')
module.exports = gql`
extend type Query {
tasks(cursor: String , limit: Int): TaskFeed!
task(id: ID!): Task
}
type TaskFeed {
taskFeed: [Task!]
pageInfo: PageInfo
}
type PageInfo {
nextPageCursor: String
hasNextPage: Boolean
}
input createTaskInput {
name: String!
completed: Boolean!
}
extend type Mutation {
createTask(input: createTaskInput!): Task
updateTask(id: ID!, input: updateTaskInput!): Task
deleteTask(id: ID!): Task
}
input updateTaskInput{
name: String
completed: Boolean
}
type Task {
id: ID!
name: String!
completed: Boolean!
user: User!
createdAt: Date!
updatedAt: Date!
}
`