simpleTicketAttribute.api.ts 389 B

1234567891011121314151617181920212223242526272829
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. export const SimpleTicketAttributeFragmentDoc = gql`
  4. fragment simpleTicketAttribute on Ticket {
  5. number
  6. internalId
  7. id
  8. title
  9. customer {
  10. id
  11. fullname
  12. }
  13. organization {
  14. id
  15. name
  16. }
  17. group {
  18. id
  19. name
  20. }
  21. createdAt
  22. stateColorCode
  23. state {
  24. id
  25. name
  26. }
  27. }
  28. `;