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.

39 lines
896 B

  1. module.exports = {
  2. // Query: {
  3. // comments(obj, args, context, info) {
  4. // return WIKI.models.Comment.findAll({ where: args })
  5. // }
  6. // },
  7. // Mutation: {
  8. // createComment(obj, args) {
  9. // return WIKI.models.Comment.create({
  10. // content: args.content,
  11. // author: args.userId,
  12. // document: args.documentId
  13. // })
  14. // },
  15. // deleteComment(obj, args) {
  16. // return WIKI.models.Comment.destroy({
  17. // where: {
  18. // id: args.id
  19. // },
  20. // limit: 1
  21. // })
  22. // },
  23. // modifyComment(obj, args) {
  24. // return WIKI.models.Comment.update({
  25. // content: args.content
  26. // }, {
  27. // where: { id: args.id }
  28. // })
  29. // }
  30. // },
  31. // Comment: {
  32. // author(cm) {
  33. // return cm.getAuthor()
  34. // },
  35. // document(cm) {
  36. // return cm.getDocument()
  37. // }
  38. // }
  39. }