1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- '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
- })
- },
- 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 }
- })
- }
- },
- Document: {
- comments(doc) {
- return doc.getComments()
- },
- tags(doc) {
- return doc.getTags()
- }
- }
- }
|