| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | 
/* 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()    }  }}
 |