ReviewCreateInput
Input for creating a review
input ReviewCreateInput {
authorEmail: String
authorName: String!
cons: [String!]
content: String!
images: [String!]
orderId: ID
productId: ID!
pros: [String!]
rating: Int!
title: String
}
Fields
ReviewCreateInput.authorEmail ● String scalar
ReviewCreateInput.authorName ● String! non-null scalar
ReviewCreateInput.cons ● [String!] list scalar
ReviewCreateInput.content ● String! non-null scalar
ReviewCreateInput.images ● [String!] list scalar
ReviewCreateInput.orderId ● ID scalar
Order ID for verified purchase
ReviewCreateInput.productId ● ID! non-null scalar
ReviewCreateInput.pros ● [String!] list scalar
ReviewCreateInput.rating ● Int! non-null scalar
ReviewCreateInput.title ● String scalar
Member Of
reviewCreate mutation