SiteStatisticsVariables is an interface representing the variables for the SiteStatisticsQuery. It includes optional parameters for querying site statistics data.

interface SiteStatisticsVariables {
    animePage?: number;
    animePerPage?: number;
    animeSort?: SiteTrendSort[];
    charactersPage?: number;
    charactersPerPage?: number;
    charactersSort?: SiteTrendSort[];
    mangaPage?: number;
    mangaPerPage?: number;
    mangaSort?: SiteTrendSort[];
    reviewsPage?: number;
    reviewsPerPage?: number;
    reviewsSort?: SiteTrendSort[];
    staffPage?: number;
    staffPerPage?: number;
    staffSort?: SiteTrendSort[];
    studiosPage?: number;
    studiosPerPage?: number;
    studiosSort?: SiteTrendSort[];
    usersPage?: number;
    usersPerPage?: number;
    usersSort?: SiteTrendSort[];
}

Properties

animePage?: number

animePage is a number representing the page number of the anime.

animePerPage?: number

animePerPage is a number representing the number of anime per page.

animeSort?: SiteTrendSort[]

animeSort is a string representing the sort order of the anime.

charactersPage?: number

charactersPage is a number representing the page number of the characters.

charactersPerPage?: number

charactersPerPage is a number representing the number of characters per page.

charactersSort?: SiteTrendSort[]

charactersSort is a string representing the sort order of the characters.

mangaPage?: number

mangaPage is a number representing the page number of the manga.

mangaPerPage?: number

mangaPerPage is a number representing the number of manga per page.

mangaSort?: SiteTrendSort[]

mangaSort is a string representing the sort order of the manga.

reviewsPage?: number

reviewsPage is a number representing the page number of the reviews.

reviewsPerPage?: number

reviewsPerPage is a number representing the number of reviews per page.

reviewsSort?: SiteTrendSort[]

reviewsSort is a string representing the sort order of the reviews.

staffPage?: number

staffPage is a number representing the page number of the staff.

staffPerPage?: number

staffPerPage is a number representing the number of staff per page.

staffSort?: SiteTrendSort[]

staffSort is a string representing the sort order of the staff.

studiosPage?: number

studiosPage is a number representing the page number of the studios.

studiosPerPage?: number

studiosPerPage is a number representing the number of studios per page.

studiosSort?: SiteTrendSort[]

studiosSort is a string representing the sort order of the studios.

usersPage?: number

usersPage is a number representing the page number of the users.

usersPerPage?: number

usersPerPage is a number representing the number of users per page.

usersSort?: SiteTrendSort[]

usersSort is a string representing the sort order of the users.