INPUT_OBJECT

VideoConnectionOptionsInput

Optional input to filter videos. Add any additional optional fields to this input.

link GraphQL Schema definition

1input VideoConnectionOptionsInput {
4
2# The IDs of any categories that should be included in the results.
3gameIDs: [ID!]
8
5# Whether unpublished (private) videos should be returned. Will only be returned
6# for the currently authenticated user. Defaults to false.
7includePrivate: Boolean
11
9# The maximum length in seconds of any videos returned.
10maxLengthSeconds: Int
14
12# The minimum length in seconds of any videos returned.
13minLengthSeconds: Int
17
15# The ending creation date of any videos returned (not inclusive).
16searchRangeEndAt: Time
20
18# The starting creation date of any videos returned (not inclusive).
19searchRangeStartAt: Time
21}