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

47 lines
879 B
JavaScript
Raw Normal View History

2017-08-19 01:21:29 +00:00
/* 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
})
},
modifyDocument(obj, args) {
return wiki.db.Document.update({
title: args.title,
subtitle: args.subtitle
}, {
where: { id: args.id }
})
},
moveDocument(obj, args) {
return wiki.db.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()
}
}
}