1234567891011121314151617181920212223 |
- import * as Types from '#shared/graphql/types.ts';
- import gql from 'graphql-tag';
- export const OverviewAttributesFragmentDoc = gql`
- fragment overviewAttributes on Overview {
- id
- name
- link
- prio
- orderBy
- orderDirection
- viewColumns {
- key
- value
- }
- orderColumns {
- key
- value
- }
- active
- ticketCount @include(if: $withTicketCount)
- }
- `;
|