ProductOption
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.
import { ProductOption } from '@daffodil/driver/shopify'
type ProductOption = Node & {
__typename?: 'ProductOption';
id: Scalars['ID']['output'];
name: Scalars['String']['output'];
values: Array<Scalars['String']['output']>;
}
Type | Options |
---|---|
ProductOption | Node & {
__typename?: 'ProductOption';
id: Scalars['ID']['output'];
name: Scalars['String']['output'];
values: Array<Scalars['String']['output']>;
} |