mirror of https://github.com/requarks/wiki
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.
47 lines
879 B
47 lines
879 B
7 years ago
|
|
||
7 years ago
|
/* global WIKI */
|
||
7 years ago
|
|
||
|
module.exports = {
|
||
|
Query: {
|
||
|
documents(obj, args, context, info) {
|
||
7 years ago
|
return WIKI.db.Document.findAll({ where: args })
|
||
7 years ago
|
}
|
||
|
},
|
||
|
Mutation: {
|
||
|
createDocument(obj, args) {
|
||
7 years ago
|
return WIKI.db.Document.create(args)
|
||
7 years ago
|
},
|
||
|
deleteDocument(obj, args) {
|
||
7 years ago
|
return WIKI.db.Document.destroy({
|
||
7 years ago
|
where: {
|
||
|
id: args.id
|
||
|
},
|
||
|
limit: 1
|
||
|
})
|
||
7 years ago
|
},
|
||
|
modifyDocument(obj, args) {
|
||
7 years ago
|
return WIKI.db.Document.update({
|
||
7 years ago
|
title: args.title,
|
||
|
subtitle: args.subtitle
|
||
|
}, {
|
||
|
where: { id: args.id }
|
||
|
})
|
||
|
},
|
||
|
moveDocument(obj, args) {
|
||
7 years ago
|
return WIKI.db.Document.update({
|
||
7 years ago
|
path: args.path
|
||
|
}, {
|
||
|
where: { id: args.id }
|
||
|
})
|
||
7 years ago
|
}
|
||
|
},
|
||
|
Document: {
|
||
7 years ago
|
comments(doc) {
|
||
|
return doc.getComments()
|
||
|
},
|
||
7 years ago
|
tags(doc) {
|
||
|
return doc.getTags()
|
||
|
}
|
||
|
}
|
||
|
}
|