Alokai

ConfigurableOrderItem

type ConfigurableOrderItem = OrderItemInterface & {
  __typename?: 'ConfigurableOrderItem'; /** The final discount information for the product. */
  discounts?: Maybe<Array<Maybe<Discount>>>; /** The entered option for the base product, such as a logo or image. */
  entered_options?: Maybe<Array<Maybe<OrderItemOption>>>; /** The selected gift message for the order item */
  gift_message?: Maybe<GiftMessage>; /** The unique ID for an `OrderItemInterface` object. */
  id: Scalars['ID']['output']; /** The SKU of parent product. */
  parent_sku?: Maybe<Scalars['String']['output']>; /** Contains details about the price of the item, including taxes and discounts. */
  prices?: Maybe<OrderItemPrices>; /** The ProductInterface object, which contains details about the base product */
  product?: Maybe<ProductInterface>; /** The name of the base product. */
  product_name?: Maybe<Scalars['String']['output']>; /** The sale price of the base product, including selected options. */
  product_sale_price: Money; /** The SKU of the base product. */
  product_sku: Scalars['String']['output']; /** The type of product, such as simple, configurable, etc. */
  product_type?: Maybe<Scalars['String']['output']>; /** URL key of the base product. */
  product_url_key?: Maybe<Scalars['String']['output']>; /** The number of canceled items. */
  quantity_canceled?: Maybe<Scalars['Float']['output']>; /** The number of invoiced items. */
  quantity_invoiced?: Maybe<Scalars['Float']['output']>; /** The number of units ordered for this item. */
  quantity_ordered?: Maybe<Scalars['Float']['output']>; /** The number of refunded items. */
  quantity_refunded?: Maybe<Scalars['Float']['output']>; /** The number of returned items. */
  quantity_returned?: Maybe<Scalars['Float']['output']>; /** The number of shipped items. */
  quantity_shipped?: Maybe<Scalars['Float']['output']>; /** The selected options for the base product, such as color or size. */
  selected_options?: Maybe<Array<Maybe<OrderItemOption>>>; /** The status of the order item. */
  status?: Maybe<Scalars['String']['output']>;
};

Referenced Types

On this page