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.
30 lines
495 B
30 lines
495 B
'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()
|
|
}
|
|
}
|
|
}
|