-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathschema.js
264 lines (248 loc) · 5.71 KB
/
schema.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
var mongoose = require('mongoose')
var Schema = mongoose.Schema
var graphql = require('graphql')
var GraphQLObjectType = graphql.GraphQLObjectType
var GraphQLBoolean = graphql.GraphQLBoolean
var GraphQLID = graphql.GraphQLID
var GraphQLString = graphql.GraphQLString
var GraphQLList = graphql.GraphQLList
var GraphQLNonNull = graphql.GraphQLNonNull
var GraphQLSchema = graphql.GraphQLSchema
// Mongoose Schema definition
var TODO = mongoose.model('Todo', new Schema({
id: mongoose.Schema.Types.ObjectId,
title: String,
completed: Boolean
}))
/*
* I’m sharing my credentials here.
* Feel free to use it while you’re learning.
* After that, create and use your own credential.
* Thanks.
*
* to connect to a local instance of MongoDB use
* COMPOSE_URI=mongodb://example:[email protected]:27017/todo
*/
var COMPOSE_URI_DEFAULT = 'mongodb://graphqltodosuser:[email protected]:11219,candidate.60.mongolayer.com:10594/graphqltodos?replicaSet=set-569540e711469f811f0000a2'
mongoose.connect(process.env.COMPOSE_URI || COMPOSE_URI_DEFAULT, function (error) {
if (error) console.error(error)
else console.log('mongo connected')
})
/** END */
var TodoType = new GraphQLObjectType({
name: 'todo',
fields: () => ({
id: {
type: GraphQLID,
description: 'Todo id'
},
title: {
type: GraphQLString,
description: 'Task title'
},
completed: {
type: GraphQLBoolean,
description: 'Flag to mark if the task is completed'
}
})
})
var promiseListAll = () => {
return new Promise((resolve, reject) => {
TODO.find((err, todos) => {
if (err) reject(err)
else resolve(todos)
})
})
}
var QueryType = new GraphQLObjectType({
name: 'Query',
fields: () => ({
todos: {
type: new GraphQLList(TodoType),
resolve: () => {
return promiseListAll()
}
}
})
})
var MutationAdd = {
type: TodoType,
description: 'Add a Todo',
args: {
title: {
name: 'Todo title',
type: new GraphQLNonNull(GraphQLString)
}
},
resolve: (root, args) => {
var newTodo = new TODO({
title: args.title,
completed: false
})
newTodo.id = newTodo._id
return new Promise((resolve, reject) => {
newTodo.save(function (err) {
if (err) reject(err)
else resolve(newTodo)
})
})
}
}
var MutationToggle = {
type: TodoType,
description: 'Toggle the todo',
args: {
id: {
name: 'Todo Id',
type: new GraphQLNonNull(GraphQLString)
}
},
resolve: (root, args) => {
return new Promise((resolve, reject) => {
TODO.findById(args.id, (err, todo) => {
if (err) {
reject(err)
return
}
if (!todo) {
reject('Todo NOT found')
return
} else {
todo.completed = !todo.completed
todo.save((err) => {
if (err) reject(err)
else resolve(todo)
})
}
})
})
}
}
var MutationDestroy = {
type: TodoType,
description: 'Destroy the todo',
args: {
id: {
name: 'Todo Id',
type: new GraphQLNonNull(GraphQLString)
}
},
resolve: (root, args) => {
return new Promise((resolve, reject) => {
TODO.findById(args.id, (err, todo) => {
if (err) {
reject(err)
} else if (!todo) {
reject('Todo NOT found')
} else {
todo.remove((err) => {
if (err) reject(err)
else resolve(todo)
})
}
})
})
}
}
var MutationToggleAll = {
type: new GraphQLList(TodoType),
description: 'Toggle all todos',
args: {
checked: {
name: 'Todo Id',
type: new GraphQLNonNull(GraphQLBoolean)
}
},
resolve: (root, args) => {
return new Promise((resolve, reject) => {
TODO.find((err, todos) => {
if (err) {
reject(err)
return
}
TODO.update({
_id: {
$in: todos.map((todo) => todo._id)
}
}, {
completed: args.checked
}, {
multi: true
}, (err) => {
if (err) reject(err)
else promiseListAll().then(resolve, reject)
})
})
})
}
}
var MutationClearCompleted = {
type: new GraphQLList(TodoType),
description: 'Clear completed',
resolve: () => {
return new Promise((resolve, reject) => {
TODO.find({completed: true}, (err, todos) => {
if (err) {
reject(err)
} else {
TODO.remove({
_id: {
$in: todos.map((todo) => todo._id)
}
}, (err) => {
if (err) reject(err)
else resolve(todos)
})
}
})
})
}
}
var MutationSave = {
type: TodoType,
description: 'Edit a todo',
args: {
id: {
name: 'Todo Id',
type: new GraphQLNonNull(GraphQLString)
},
title: {
name: 'Todo title',
type: new GraphQLNonNull(GraphQLString)
}
},
resolve: (root, args) => {
return new Promise((resolve, reject) => {
TODO.findById(args.id, (err, todo) => {
if (err) {
reject(err)
return
}
if (!todo) {
reject('Todo NOT found')
return
}
todo.title = args.title
todo.save((err) => {
if (err) reject(err)
else resolve(todo)
})
})
})
}
}
var MutationType = new GraphQLObjectType({
name: 'Mutation',
fields: {
add: MutationAdd,
toggle: MutationToggle,
toggleAll: MutationToggleAll,
destroy: MutationDestroy,
clearCompleted: MutationClearCompleted,
save: MutationSave
}
})
module.exports = new GraphQLSchema({
query: QueryType,
mutation: MutationType
})