userAttributes.api.ts 563 B

12345678910111213141516171819202122232425262728
  1. import * as Types from '../types';
  2. import gql from 'graphql-tag';
  3. import { ObjectAttributeValuesFragmentDoc } from './objectAttributeValues.api';
  4. export const UserAttributesFragmentDoc = gql`
  5. fragment userAttributes on User {
  6. id
  7. internalId
  8. firstname
  9. lastname
  10. fullname
  11. image
  12. preferences
  13. objectAttributeValues {
  14. ...objectAttributeValues
  15. }
  16. organization {
  17. id
  18. internalId
  19. name
  20. active
  21. objectAttributeValues {
  22. ...objectAttributeValues
  23. }
  24. }
  25. hasSecondaryOrganizations
  26. }
  27. ${ObjectAttributeValuesFragmentDoc}`;