1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- fragment userDetailAttributes on User {
- id
- internalId
- firstname
- lastname
- fullname
- image
- email
- web
- vip
- phone
- outOfOffice
- mobile
- fax
- note
- active
- objectAttributeValues {
- ...objectAttributeValues
- }
- organization {
- id
- internalId
- name
- active
- vip
- ticketsCount {
- open
- closed
- }
- }
- secondaryOrganizations(first: $secondaryOrganizationsCount) {
- edges {
- node {
- id
- internalId
- active
- name
- }
- }
- totalCount
- }
- hasSecondaryOrganizations
- ticketsCount {
- open
- closed
- }
- }
|