ticketOverviewUpdates.graphql 282 B

12345678910111213141516
  1. subscription ticketOverviewUpdates($withTicketCount: Boolean!) {
  2. ticketOverviewUpdates {
  3. ticketOverviews {
  4. edges {
  5. node {
  6. ...overviewAttributes
  7. }
  8. cursor
  9. }
  10. pageInfo {
  11. endCursor
  12. hasNextPage
  13. }
  14. }
  15. }
  16. }