ProductLinksInterface
Contains information about linked products, including the link type and product type of each item.
type ProductLinksInterface = {
link_type?: Maybe<Scalars['String']['output']>; /** The SKU of the linked product. */
linked_product_sku?: Maybe<Scalars['String']['output']>; /** The type of linked product (simple, virtual, bundle, downloadable, grouped, configurable). */
linked_product_type?: Maybe<Scalars['String']['output']>; /** The position within the list of product links. */
position?: Maybe<Scalars['Int']['output']>; /** The identifier of the linked product. */
sku?: Maybe<Scalars['String']['output']>;
};