ProductReviewRating
Contains data about a single aspect of a product review.
type ProductReviewRating = {
__typename?: 'ProductReviewRating'; /** The label assigned to an aspect of a product that is being rated, such as quality or price. */
name: Scalars['String']['output']; /** The rating value given by customer. By default, possible values range from 1 to 5. */
value: Scalars['String']['output'];
};