GitHub

ProductOption

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

Product property names like "Size", "Color", and "Material" that the customers can select. Variants are selected based on permutations of these options. 255 characters limit each.

type ProductOption = Node & {
    __typename?: 'ProductOption';
    id: Scalars['ID']['output'];
    name: Scalars['String']['output'];
    values: Array<Scalars['String']['output']>;
}