userPersonalSettings.graphql 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. fragment userPersonalSettings on User {
  2. personalSettings {
  3. notificationConfig {
  4. groupIds
  5. matrix {
  6. create {
  7. channel {
  8. email
  9. online
  10. }
  11. criteria {
  12. no
  13. ownedByMe
  14. ownedByNobody
  15. subscribed
  16. }
  17. }
  18. escalation {
  19. channel {
  20. email
  21. online
  22. }
  23. criteria {
  24. no
  25. ownedByMe
  26. ownedByNobody
  27. subscribed
  28. }
  29. }
  30. reminderReached {
  31. channel {
  32. email
  33. online
  34. }
  35. criteria {
  36. no
  37. ownedByMe
  38. ownedByNobody
  39. subscribed
  40. }
  41. }
  42. update {
  43. channel {
  44. email
  45. online
  46. }
  47. criteria {
  48. no
  49. ownedByMe
  50. ownedByNobody
  51. subscribed
  52. }
  53. }
  54. }
  55. }
  56. notificationSound{
  57. enabled
  58. file
  59. }
  60. }
  61. }