organizationAttributes.api.ts 526 B

123456789101112131415161718192021222324
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. import { ObjectAttributeValuesFragmentDoc } from '../../../../graphql/fragments/objectAttributeValues.api';
  4. export const OrganizationAttributesFragmentDoc = gql`
  5. fragment organizationAttributes on Organization {
  6. id
  7. internalId
  8. name
  9. shared
  10. domain
  11. domainAssignment
  12. active
  13. note
  14. vip
  15. ticketsCount {
  16. open
  17. closed
  18. }
  19. objectAttributeValues {
  20. ...objectAttributeValues
  21. }
  22. }
  23. ${ObjectAttributeValuesFragmentDoc}`;