12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 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
- }
- ... on TicketArticle {
- id
- internalId
- ticket {
- id
- internalId
- title
- }
- to {
- raw
- }
- bodyWithUrls
- preferences
- }
- }
- }
- cursor
- }
- pageInfo {
- endCursor
- hasNextPage
- }
- }
- }
|