overviewAttributes.api.ts 406 B

12345678910111213141516171819202122232425
  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. organizationShared
  20. outOfOffice
  21. active
  22. ticketCount @include(if: $withTicketCount)
  23. }
  24. `;