13 lines
215 B
GraphQL
13 lines
215 B
GraphQL
query getTVShowSeasons($tvShowTMDBId: Int!) {
|
|
seasons: getTVShowSeasons(tvShowTMDBId: $tvShowTMDBId) {
|
|
id
|
|
name
|
|
seasonNumber
|
|
episodeCount
|
|
overview
|
|
posterPath
|
|
airDate
|
|
inLibrary
|
|
}
|
|
}
|