mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
16 lines
265 B
GraphQL
16 lines
265 B
GraphQL
query (
|
|
$showId: String!
|
|
$translationType: VaildTranslationTypeEnumType!
|
|
$episodeString: String!
|
|
) {
|
|
episode(
|
|
showId: $showId
|
|
translationType: $translationType
|
|
episodeString: $episodeString
|
|
) {
|
|
episodeString
|
|
sourceUrls
|
|
notes
|
|
}
|
|
}
|