onlineNotifications.graphql 888 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. query onlineNotifications {
  2. onlineNotifications {
  3. edges {
  4. node {
  5. id
  6. seen
  7. createdAt
  8. createdBy {
  9. id
  10. fullname
  11. lastname
  12. firstname
  13. email
  14. vip
  15. outOfOffice
  16. outOfOfficeStartAt
  17. outOfOfficeEndAt
  18. active
  19. image
  20. }
  21. typeName
  22. objectName
  23. metaObject {
  24. ... on Ticket {
  25. id
  26. internalId
  27. title
  28. }
  29. ... on TicketArticle {
  30. id
  31. internalId
  32. ticket {
  33. id
  34. internalId
  35. title
  36. }
  37. to {
  38. raw
  39. }
  40. bodyWithUrls
  41. preferences
  42. }
  43. }
  44. }
  45. cursor
  46. }
  47. pageInfo {
  48. endCursor
  49. hasNextPage
  50. }
  51. }
  52. }