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.

63 lines
1.4 KiB

  1. /* global wiki */
  2. const gql = require('graphql')
  3. module.exports = {
  4. Query: {
  5. tags(obj, args, context, info) {
  6. return wiki.db.Tag.findAll({ where: args })
  7. }
  8. },
  9. Mutation: {
  10. assignTagToDocument(obj, args) {
  11. return wiki.db.Tag.findById(args.tagId).then(tag => {
  12. if (!tag) {
  13. throw new gql.GraphQLError('Invalid Tag ID')
  14. }
  15. return wiki.db.Document.findById(args.documentId).then(doc => {
  16. if (!doc) {
  17. throw new gql.GraphQLError('Invalid Document ID')
  18. }
  19. return tag.addDocument(doc)
  20. })
  21. })
  22. },
  23. createTag(obj, args) {
  24. return wiki.db.Tag.create(args)
  25. },
  26. deleteTag(obj, args) {
  27. return wiki.db.Tag.destroy({
  28. where: {
  29. id: args.id
  30. },
  31. limit: 1
  32. })
  33. },
  34. removeTagFromDocument(obj, args) {
  35. return wiki.db.Tag.findById(args.tagId).then(tag => {
  36. if (!tag) {
  37. throw new gql.GraphQLError('Invalid Tag ID')
  38. }
  39. return wiki.db.Document.findById(args.documentId).then(doc => {
  40. if (!doc) {
  41. throw new gql.GraphQLError('Invalid Document ID')
  42. }
  43. return tag.removeDocument(doc)
  44. })
  45. })
  46. },
  47. renameTag(obj, args) {
  48. return wiki.db.Group.update({
  49. key: args.key
  50. }, {
  51. where: { id: args.id }
  52. })
  53. }
  54. },
  55. Tag: {
  56. documents(tag) {
  57. return tag.getDocuments()
  58. }
  59. }
  60. }