wikijs-fork/server/graph/resolvers/document.js

47 lines
899 B
JavaScript
Raw Normal View History

2017-08-19 01:21:29 +00:00
/* global WIKI */
2017-08-19 01:21:29 +00:00
module.exports = {
Query: {
documents(obj, args, context, info) {
return WIKI.models.Document.findAll({ where: args })
2017-08-19 01:21:29 +00:00
}
},
Mutation: {
createDocument(obj, args) {
return WIKI.models.Document.create(args)
2017-08-19 01:21:29 +00:00
},
deleteDocument(obj, args) {
return WIKI.models.Document.destroy({
2017-08-19 01:21:29 +00:00
where: {
id: args.id
},
limit: 1
})
},
modifyDocument(obj, args) {
return WIKI.models.Document.update({
title: args.title,
subtitle: args.subtitle
}, {
where: { id: args.id }
})
},
moveDocument(obj, args) {
return WIKI.models.Document.update({
path: args.path
}, {
where: { id: args.id }
})
2017-08-19 01:21:29 +00:00
}
},
Document: {
comments(doc) {
return doc.getComments()
},
2017-08-19 01:21:29 +00:00
tags(doc) {
return doc.getTags()
}
}
}