OBJECT

ChannelPermittedTerm

ChannelPermittedTerm is an object that defines things that automod should permit in a channel.

link GraphQL Schema definition

1type ChannelPermittedTerm {
2
3# If the term is permitted or banned type.
4category: String!
5
6# When the term was created.
7createdAt: Time
8
9# When the term expires at.
10expiresAt: Time
11
12# If mods should be able to see and edit this term.
13isModEditable: Boolean!
14
15# phrases are the string representation of a term.
16phrases: [String!]!
17
18# Where the term came from, usually a mod user ID.
19source: String
20
21# When the term was last updated.
22updatedAt: Time
23
24}