AniLink - v1.29.2
    Preparing search index...

    ReviewsVariables is an interface representing the variables for the ReviewsQuery. It includes optional page, per page, id, media id, user id, media type, sort, and as html.

    interface ReviewsVariables {
        asHtml?: boolean;
        id?: number;
        mediaId?: number;
        mediaType?: string;
        page?: number;
        perPage?: number;
        sort?: string[];
        userId?: number;
    }
    Index
    asHtml?: boolean

    asHtml is a boolean representing whether to return the result as HTML.

    id?: number

    id is a number representing the id of the review.

    mediaId?: number

    mediaId is a number representing the id of the media.

    mediaType?: string

    mediaType is a string representing the type of the media.

    page?: number

    page is a number representing the page number.

    perPage?: number

    perPage is a number representing the number of items per page.

    sort?: string[]

    sort is an array of strings representing the sort order.

    userId?: number

    userId is a number representing the id of the user.