ticketMention.api.ts 385 B

1234567891011121314151617181920212223
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. export const TicketMentionFragmentDoc = gql`
  4. fragment ticketMention on Mention {
  5. user {
  6. id
  7. internalId
  8. firstname
  9. lastname
  10. fullname
  11. vip
  12. outOfOffice
  13. outOfOfficeStartAt
  14. outOfOfficeEndAt
  15. active
  16. image
  17. }
  18. userTicketAccess {
  19. agentReadAccess
  20. }
  21. }
  22. `;