GitHub

InContextAnnotationType

import { InContextAnnotationType } from '@daffodil/driver/shopify'

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.

type InContextAnnotationType = {
    __typename?: 'InContextAnnotationType';
    kind: Scalars['String']['output'];
    name: Scalars['String']['output'];
}