INPUT_OBJECT

UpdateChannelClipsSettingInput

The required input for a updateChannelClipsSetting mutation.

link GraphQL Schema definition

1input UpdateChannelClipsSettingInput {
4
2# The Id of the channel where we want to update the clips enable/disable setting.
3channelID: ID!
8
5# If isClipsEnabled is true, allow the following roles to create Clips on the
6# channel.
7creationRestrictedTo: ChannelClipsCreationRestrictedToInput
12
9# If there are clip creation restrictions, use the following to add options to
10# those restrictions.
11creationRestrictionOptions: ChannelClipsCreationAuthRestrictionOptionsInput
15
13# Set whether or not users can create Clips on this channel.
14isClipsEnabled: Boolean!
16}