Skip to 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
}

The id of the review

The id of the review’s creator

The id of the review’s media

For which type of media the review is for

A short summary of the review

The main review body text

Return the string in pre-parsed html instead of markdown

The total user rating of the review

The amount of user ratings of the review

The rating of the review by currently authenticated user

The review score of the media

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

The url for the review page on the AniList website

The time of the thread creation

The time of the thread last update

The creator of the review

The media the review is of

RateReview mutation ● Review query ● SaveReview mutation

InternalPage object ● Page object ● ReviewConnection object ● ReviewEdge object