Product
No description
type Product {
id: UUID!
reviews(
first: Int
skip: Int
orderBy: ReviewOrderInput
): ReviewConnection!
averageRating: Float!
}
Fields
Product.id
● UUID!
non-null scalar
UUID of the product.
Product.reviews
● ReviewConnection!
non-null object
Retrieves reviews of product.
Product.reviews.first
●Int
scalarDescribes that the
first
N reviews should be retrieved.
Product.reviews.skip
● Int
scalar
Describes how many reviews should be skipped at the beginning.
Product.reviews.orderBy
● ReviewOrderInput
input
Specifies the order in which reviews are retrieved.
Product.averageRating
● Float!
non-null scalar
Retrieves average rating of product.
Implemented By
_Entity
union