Alokai

ProductReview

Contains details of a product review.

type ProductReview = {
  __typename?: 'ProductReview'; /** The average of all ratings for this product. */
  average_rating: Scalars['Float']['output']; /** The date the review was created. */
  created_at: Scalars['String']['output']; /** The customer's nickname. Defaults to the customer name, if logged in. */
  nickname: Scalars['String']['output']; /** The reviewed product. */
  product: ProductInterface; /** An array of ratings by rating category, such as quality, price, and value. */
  ratings_breakdown: Array<Maybe<ProductReviewRating>>; /** The summary (title) of the review. */
  summary: Scalars['String']['output']; /** The review text. */
  text: Scalars['String']['output'];
};

Referenced Types

On this page