overviewAttributes.api.ts 371 B

1234567891011121314151617181920212223
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. export const OverviewAttributesFragmentDoc = gql`
  4. fragment overviewAttributes on Overview {
  5. id
  6. name
  7. link
  8. prio
  9. orderBy
  10. orderDirection
  11. viewColumns {
  12. key
  13. value
  14. }
  15. orderColumns {
  16. key
  17. value
  18. }
  19. active
  20. ticketCount @include(if: $withTicketCount)
  21. }
  22. `;