mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
26 lines
416 B
GraphQL
26 lines
416 B
GraphQL
query (
|
|
$search: SearchInput
|
|
$limit: Int
|
|
$page: Int
|
|
$translationType: VaildTranslationTypeEnumType
|
|
$countryOrigin: VaildCountryOriginEnumType
|
|
) {
|
|
shows(
|
|
search: $search
|
|
limit: $limit
|
|
page: $page
|
|
translationType: $translationType
|
|
countryOrigin: $countryOrigin
|
|
) {
|
|
pageInfo {
|
|
total
|
|
}
|
|
edges {
|
|
_id
|
|
name
|
|
availableEpisodes
|
|
__typename
|
|
}
|
|
}
|
|
}
|