1234567891011121314151617181920212223 |
- import * as Types from '#shared/graphql/types.ts';
- import gql from 'graphql-tag';
- export const TicketMentionFragmentDoc = gql`
- fragment ticketMention on Mention {
- user {
- id
- internalId
- firstname
- lastname
- fullname
- vip
- outOfOffice
- outOfOfficeStartAt
- outOfOfficeEndAt
- active
- image
- }
- userTicketAccess {
- agentReadAccess
- }
- }
- `;
|