AniLink - v1.29.2
    Preparing search index...

    RateReviewVariables is an interface representing the variables for the RateReviewMutation. It includes the review id and rating to apply to the review.

    interface RateReviewVariables {
        rating: ReviewRating;
        reviewId: number;
    }
    Index
    rating: ReviewRating

    rating is a ReviewRating representing the vote to apply to the review.

    reviewId: number

    reviewId is a number representing the id of the review to rate.