12345678910111213141516171819202122232425262728293031323334353637 |
- query onlineNotifications {
- onlineNotifications {
- edges {
- node {
- id
- seen
- createdAt
- createdBy {
- id
- fullname
- lastname
- firstname
- email
- vip
- outOfOffice
- active
- image
- }
- typeName
- objectName
- objectId
- metaObject {
- ... on Ticket {
- id
- internalId
- title
- }
- }
- }
- cursor
- }
- pageInfo {
- endCursor
- hasNextPage
- }
- }
- }
|