INPUT_OBJECT

AddChannelBlockedTermInput

AddChannelBlockedTermInput takes in the channel, phrases, and if the term should be editable by mods.

link GraphQL Schema definition

1input AddChannelBlockedTermInput {
4
2# channelID is the channelID owner of terms.
3channelID: ID!
7
5# isModEditable is if the term is viewable or editable by mods.
6isModEditable: Boolean!
10
8# phrase defines the string that is to be blocked.
9phrase: String
13
11# phrases is the strings that are blocked.
12phrases: [String!]!
14}