INPUT_OBJECT

GameClipsInput

Filtering criteria for paginated game clips results.

link GraphQL Schema definition

1input GameClipsInput {
4
2# The ID of the broadcaster to filter results by.
3broadcasterID: ID
7
5# The ID of the curator to filter results by.
6curatorID: ID
11
8# Overrides the period. if startAt is provided, but endAt isn't, the endAt value
9# will be the day when the query was made.
10endAt: Time
16
12# DEPRECATED: `filter` should no longer be used. Prefer `period` and `sort`
13# instead.
14# A filter which restricts results.
15filter: ClipsFilter
20
17# Clip results will be filtered by this language.
18# Omit this input field to get results by all languages.
19languages: [Language!]
23
21# The time period to restrict clips based on creation time.
22period: ClipsPeriod
26
24# The sort order for the clips results.
25sort: ClipsSort
30
27# Overrides the period param. If endAt is provided, but startAt isn't, 2015-01-01
28# will be used for it.
29startAt: Time
31}