ticketTaskbarTabAttributes.api.ts 295 B

1234567891011121314151617
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. export const TicketTaskbarTabAttributesFragmentDoc = gql`
  4. fragment ticketTaskbarTabAttributes on Ticket {
  5. id
  6. internalId
  7. number
  8. title
  9. state {
  10. id
  11. name
  12. }
  13. stateColorCode
  14. updatedAt
  15. }
  16. `;