Types > AnswerCreate
Commerce APITypesAnswerCreate
AnswerCreate

Description

Topics: Product Questions, Product Reviews

Fields

flag_ignore: Boolean

Whether flagging actions are ignored

Example: false


status: ApprovalStatus

Publishing approval status


text: String!

Text of the answer

Example: "Great product!"

Valid when: text is not empty

Valid when: text's length doesn't exceed 100000 characters


Used By

Mutations

productQuestionsAnswersCreate, productReviewsAnswersCreate

Preview (typescript)

interface AnswerCreate {
flag_ignore?: boolean
status?: ApprovalStatus | null
text: string
}