CreateProductReviewInput
Defines a new product review.
type CreateProductReviewInput = {
nickname: Scalars['String']['input']; /** The ratings details by category. For example, Price: 5 stars, Quality: 4 stars, etc. */
ratings: Array<InputMaybe<ProductReviewRatingInput>>; /** The SKU of the reviewed product. */
sku: Scalars['String']['input']; /** The summary (title) of the review. */
summary: Scalars['String']['input']; /** The review text. */
text: Scalars['String']['input'];
};