OBJECT

DetailedAutoModConfiguration

Defines AutoMod category levels for a Channel.

link GraphQL Schema definition

1type DetailedAutoModConfiguration {
2
3# This field will be a value between 0 and 4, inclusive.
4ableismLevel: Int
5
6# This field will be a value between 0 and 4, inclusive.
7aggressionLevel: Int
8
9# This field will be a value between 0 and 4, inclusive.
10homophobiaLevel: Int
11
12# This field will be a value between 0 and 4, inclusive.
13misogynyLevel: Int
14
15# This field will be a value between 0 and 4, inclusive.
16nameCallingLevel: Int
17
18# This field will be a value between 0 and 4, inclusive.
19profanityLevel: Int
20
21# This field will be a value between 0 and 4, inclusive.
22racismLevel: Int
23
24# This field will be a value between 0 and 4, inclusive.
25sexualityLevel: Int
26
27# DEPRECATED: nWordLevel is the level of "nWord" category. Will be deprecated when
28# inference is upgraded to V4.
29nWordLevel: Int @deprecated( reason: "No longer supported" )
30
31# DEPRECATED: whiteNationalistLevel is the level of "whiteNationalist" category.
32# Will be deprecated when inference is upgraded to V4.
33whiteNationalistLevel: Int @deprecated( reason: "No longer supported" )
34
35}