Files
reiverr/src/lib/queries/get-tv-show-seasons.query.graphql
Aleksi Lassila e04a054999 Initial commit
2023-06-13 13:08:28 +03:00

13 lines
215 B
GraphQL

query getTVShowSeasons($tvShowTMDBId: Int!) {
seasons: getTVShowSeasons(tvShowTMDBId: $tvShowTMDBId) {
id
name
seasonNumber
episodeCount
overview
posterPath
airDate
inLibrary
}
}