OBJECT

EpisodeDetails

Episode metadata.

link GraphQL Schema definition

1type EpisodeDetails {
2
3# Total length of the content.
4durationSeconds: Int
5
6# The episode number.
7episode: Int
8
9# The season number.
10season: Int
11
12# The name of the series.
13series: String
14
15}