import { ShopifyInContextAnnotationType } 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.
interface ShopifyInContextAnnotationType {
__typename: "InContextAnnotationType"
kind: string
name: string
}