mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
899 B
46 lines
899 B
|
|
/* global WIKI */
|
|
|
|
module.exports = {
|
|
Query: {
|
|
documents(obj, args, context, info) {
|
|
return WIKI.models.Document.findAll({ where: args })
|
|
}
|
|
},
|
|
Mutation: {
|
|
createDocument(obj, args) {
|
|
return WIKI.models.Document.create(args)
|
|
},
|
|
deleteDocument(obj, args) {
|
|
return WIKI.models.Document.destroy({
|
|
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 }
|
|
})
|
|
}
|
|
},
|
|
Document: {
|
|
comments(doc) {
|
|
return doc.getComments()
|
|
},
|
|
tags(doc) {
|
|
return doc.getTags()
|
|
}
|
|
}
|
|
}
|