Alokai

CustomizableFieldOption

Contains information about a text field that is defined as part of a customizable option.

type CustomizableFieldOption = CustomizableOptionInterface & {
  __typename?: 'CustomizableFieldOption';
  option_id?: Maybe<Scalars['Int']['output']>; /** The Stock Keeping Unit of the base product. */
  product_sku?: Maybe<Scalars['String']['output']>; /** Indicates whether the option is required. */
  required?: Maybe<Scalars['Boolean']['output']>; /** The order in which the option is displayed. */
  sort_order?: Maybe<Scalars['Int']['output']>; /** The display name for this option. */
  title?: Maybe<Scalars['String']['output']>; /** The unique ID for a `CustomizableOptionInterface` object. */
  uid: Scalars['ID']['output']; /** An object that defines a text field. */
  value?: Maybe<CustomizableFieldValue>;
};

Referenced Types

On this page