overviewAttributes.api.ts 433 B

123456789101112131415161718192021222324252627
  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. groupBy
  10. orderBy
  11. orderDirection
  12. viewColumns {
  13. key
  14. value
  15. }
  16. orderColumns {
  17. key
  18. value
  19. }
  20. organizationShared
  21. outOfOffice
  22. active
  23. viewColumnsRaw
  24. ticketCount @include(if: $withTicketCount)
  25. }
  26. `;