feat: mutations + updated deps

This commit is contained in:
NGPixel
2017-08-18 21:21:29 -04:00
parent 840eb7e705
commit 02183f82ec
5 changed files with 453 additions and 198 deletions

View File

@@ -0,0 +1,29 @@
'use strict'
/* global wiki */
module.exports = {
Query: {
documents(obj, args, context, info) {
return wiki.db.Document.findAll({ where: args })
}
},
Mutation: {
createDocument(obj, args) {
return wiki.db.Document.create(args)
},
deleteDocument(obj, args) {
return wiki.db.Document.destroy({
where: {
id: args.id
},
limit: 1
})
}
},
Document: {
tags(doc) {
return doc.getTags()
}
}
}