GitHub

InContextAnnotationType

This gives information about the type of context that impacts a field. For example, for a query with @inContext(language: "EN"), the type would point to the name: LanguageCode and kind: ENUM.

import { InContextAnnotationType } from '@daffodil/driver/shopify'
type InContextAnnotationType = {
    __typename?: 'InContextAnnotationType';
    kind: Scalars['String']['output'];
    name: Scalars['String']['output'];
}
Type Options
InContextAnnotationType { __typename?: 'InContextAnnotationType'; kind: Scalars['String']['output']; name: Scalars['String']['output']; }