OBJECT

Premiere

DEPRECATED.

link GraphQL Schema definition

1type Premiere {
2
3# The Premiere’s identifier.
4id: ID! @deprecated( reason: "Premieres as a product has been deprecated" )
5
6# The paginated items in the premiere. At this time, they will all be VoDs.
7# A maximum of 100 items will be returned per request.
8items(
9first: Int,
10after: Cursor
11): PremiereConnection @deprecated( reason: "Premieres as a product has been deprecated" )
12
13# The archived video. Only populated if the premiere is in state SUCCESS.
14pastPremiere: Video @deprecated( reason: "Premieres as a product has been deprecated" )
15
16# Status of the premiere.
17status: PremiereStatus! @deprecated( reason: "Premieres as a product has been deprecated" )
18
19# The user who this premiere belongs to.
20user: User @deprecated( reason: "Premieres as a product has been deprecated" )
21
22}

link Required by

This element is not required by anyone