objectAttributeValues.api.ts 267 B

12345678910111213
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. export const ObjectAttributeValuesFragmentDoc = gql`
  4. fragment objectAttributeValues on ObjectAttributeValue {
  5. attribute {
  6. name
  7. display
  8. }
  9. value
  10. renderedLink
  11. }
  12. `;