zammad/zammad

View on GitHub
app/frontend/shared/graphql/fragments/objectAttributeValues.api.ts

Summary

Maintainability
A
0 mins
Test Coverage
import * as Types from '#shared/graphql/types.ts';

import gql from 'graphql-tag';
export const ObjectAttributeValuesFragmentDoc = gql`
    fragment objectAttributeValues on ObjectAttributeValue {
  attribute {
    name
    display
  }
  value
  renderedLink
}
    `;