INPUT_OBJECT

DeleteClipsInput

DeleteClipsInput accepts either a list of slugs, a video id, or a broadcast id to determine the clips to delete.

link GraphQL Schema definition

1input DeleteClipsInput {
4
2# The id of the broadcast to delete clips from.
3broadcastID: ID
7
5# The list of clip slugs to be deleted.
6slugs: [ID!]
10
8# The id of the video to delete clips from.
9videoID: ID
11}