INPUT_OBJECT

CreateClipInput

CreateClipInput creates a clip either from a broadcast or video. If both broadcastID and videoID are set, the broadcastID will be preferred.

link GraphQL Schema definition

1input CreateClipInput {
4
2# The ID of the broadcast to create a clip from.
3broadcastID: ID
7
5# The ID of the broadcaster that the broadcast or video belongs to.
6broadcasterID: ID!
10
8# The number of seconds into the broadcast or video to create the clip from.
9offsetSeconds: Float!
13
11# The ID of the video to create a clip from.
12videoID: ID
14}