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