overviewAttributes.api.ts 352 B

12345678910111213141516171819
  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. internalId
  7. name
  8. link
  9. prio
  10. groupBy
  11. orderBy
  12. orderDirection
  13. organizationShared
  14. outOfOffice
  15. active
  16. ticketCount @include(if: $withTicketCount)
  17. }
  18. `;