Types > StorefrontProductReviewAnswer
Storefront APITypesStorefrontProductReviewAnswer
StorefrontProductReviewAnswer

Description

Fields

created_at: String!

The date and time when the answer was created, RFC 3339 format

Example: "2014-09-04T12:23:34Z"

Timestamp (RFC 3339)


detected_language: InfoLanguage


flagged: Boolean!

Whether you flagged for this answer

Example: false


id: String!

Unique answer identifier. See also: Unique Identifiers

Example: "aw_EQzGqWoY"


no_count: Int!

Number of times this answer was voted no

Example: 5


product: StorefrontProduct


review: StorefrontProductReview


status: ApprovalStatus!

Publishing approval status


text: String!

Text of the answer

Example: "Great product!"


updated_at: String!

The date and time when the answer was last updated, RFC 3339 format

Example: "2014-09-04T12:23:34Z"

Timestamp (RFC 3339)


user: StorefrontUser


voted: StorefrontCustomerVote!

Whether customer voted or not and how


yes_count: Int!

Number of times this answer was voted yes

Example: 5


Used By

Types

StorefrontProductReview

Preview (typescript)

interface StorefrontProductReviewAnswer {
created_at: string
detected_language?: InfoLanguage | null
flagged: boolean
id: string
no_count: number
product?: StorefrontProduct | null
review?: StorefrontProductReview | null
status: ApprovalStatus
text: string
updated_at: string
user?: StorefrontUser | null
voted: StorefrontCustomerVote
yes_count: number
}