INPUT_OBJECT

CreateContentTagsInput

Create new tags associated with CLIP, STREAM, or VOD with contentID.

link GraphQL Schema definition

1input CreateContentTagsInput {
4
2# ID of the channel owning the content.
3authorID: ID!
7
5# ID of content: Channel ID for Streams, Slugs for Clips, and VOD ids for VODs.
6contentID: ID!
10
8# Type of content being returned. Can only be of values CLIP, STREAM, or VOD.
9contentType: ContentType!
13
11# List of tag IDs to be added to the content.
12tagIDs: [ID!]!
14}