Expert
mutation AddReviewForEpisode($reviewInput: ReviewInput!) {
createReview(episode: JEDI, review: $reviewInput) {
stars
commentary
}
}
input ReviewInput {
stars: Int!
commentary: String
}
Dans cette mutation GraphQL, à quoi sert ReviewInput et comment est-il utilisé ?!
Author: AnasStatus: PublishedQuestion passed 55 times
Edit
-1
Community EvaluationsNo one has reviewed this question yet, be the first!
0
What is a "mutation" in GraphQL?0
What was the business need that drove Facebook to develop GraphQL?0
What will be the result of this GraphQL query if the user has no posts?0
What is the role of the schema in GraphQL?0
What is the main role of a "resolver" in GraphQL?1
Create a new review and return its details1
Using inline fragments for different types in GraphQL