Skip to main content

ProductRating

Represents the rating of a product

type ProductRating {
average: Float
reviews: [ProductReview]
}

Fields

average ● Float

Average product rating, 0-5

reviews ● [ProductReview]

The reviews making up the overall rating

Example

{
"reviews": [
{
"createdAt": "2024-05-03T11:52:33Z"
}
]
}