overviews.graphql 316 B

123456789101112131415161718192021
  1. query overviews($withTicketCount: Boolean!) {
  2. overviews {
  3. edges {
  4. node {
  5. id
  6. name
  7. link
  8. prio
  9. order
  10. view
  11. active
  12. ticketCount @include(if: $withTicketCount)
  13. }
  14. cursor
  15. }
  16. pageInfo {
  17. endCursor
  18. hasNextPage
  19. }
  20. }
  21. }