userDetailAttributes.api.ts 645 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import * as Types from '../types';
  2. import gql from 'graphql-tag';
  3. import { ObjectAttributeValuesFragmentDoc } from './objectAttributeValues.api';
  4. export const UserDetailAttributesFragmentDoc = gql`
  5. fragment userDetailAttributes on User {
  6. id
  7. internalId
  8. firstname
  9. lastname
  10. fullname
  11. image
  12. email
  13. web
  14. vip
  15. phone
  16. mobile
  17. fax
  18. note
  19. active
  20. objectAttributeValues {
  21. ...objectAttributeValues
  22. }
  23. organization {
  24. id
  25. internalId
  26. name
  27. active
  28. ticketsCount {
  29. open
  30. closed
  31. }
  32. }
  33. hasSecondaryOrganizations
  34. ticketsCount {
  35. open
  36. closed
  37. }
  38. }
  39. ${ObjectAttributeValuesFragmentDoc}`;