onlineNotifications.graphql 571 B

12345678910111213141516171819202122232425262728293031323334353637
  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. active
  17. image
  18. }
  19. typeName
  20. objectName
  21. objectId
  22. metaObject {
  23. ... on Ticket {
  24. id
  25. internalId
  26. title
  27. }
  28. }
  29. }
  30. cursor
  31. }
  32. pageInfo {
  33. endCursor
  34. hasNextPage
  35. }
  36. }
  37. }