PriceDetails
Can be used to retrieve the main price details in case of bundle product
type PriceDetails = {
__typename?: 'PriceDetails'; /** The percentage of discount applied to the main product price */
discount_percentage?: Maybe<Scalars['Float']['output']>; /** The final price after applying the discount to the main product */
main_final_price?: Maybe<Scalars['Float']['output']>; /** The regular price of the main product */
main_price?: Maybe<Scalars['Float']['output']>;
};