Objects

ProductReviewType

Type containing all information about a product review

Type containing all information about a product review

type ProductReviewType {
  rating: Int!
  comment: String!
  reviewDate: DateTime!
  author: String!
}

Fields

rating ● Int! non-null scalar required

The product rating (1-5)

comment ● String! non-null scalar required

The product review comment

reviewDate ● DateTime! non-null scalar required

The date and time for when the review was made

author ● String! non-null scalar required

Author of the review

Member Of

ProductReviewResultType object