onlineNotifications.graphql 610 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. }
  30. }
  31. cursor
  32. }
  33. pageInfo {
  34. endCursor
  35. hasNextPage
  36. }
  37. }
  38. }