Skip to main content

Review

A Review that features in an anime or manga

type Review {
id: Int!
userId: Int!
mediaId: Int!
mediaType: MediaType
summary: String
body(asHtml: Boolean): String
rating: Int
ratingAmount: Int
userRating: ReviewRating
score: Int
private: Boolean
siteUrl: String
createdAt: Int!
updatedAt: Int!
user: User
media: Media
}

Fields

Review.id ● Int! non-null scalar

The id of the review

Review.userId ● Int! non-null scalar

The id of the review's creator

Review.mediaId ● Int! non-null scalar

The id of the review's media

Review.mediaType ● MediaType enum

For which type of media the review is for

Review.summary ● String scalar

A short summary of the review

Review.body ● String scalar

The main review body text

Review.body.asHtml ● Boolean scalar

Return the string in pre-parsed html instead of markdown

Review.rating ● Int scalar

The total user rating of the review

Review.ratingAmount ● Int scalar

The amount of user ratings of the review

Review.userRating ● ReviewRating enum

The rating of the review by currently authenticated user

Review.score ● Int scalar

The review score of the media

Review.private ● Boolean scalar

If the review is not yet publicly published and is only viewable by creator

Review.siteUrl ● String scalar

The url for the review page on the AniList website

Review.createdAt ● Int! non-null scalar

The time of the thread creation

Review.updatedAt ● Int! non-null scalar

The time of the thread last update

Review.user ● User object

The creator of the review

Review.media ● Media object

The media the review is of

Returned By

RateReview mutation ● Review query ● SaveReview mutation

Member Of

InternalPage object ● Page object ● ReviewConnection object ● ReviewEdge object