OBJECT

AutoModContent

AutomodContent is the automod response for the text evaulated.

link GraphQL Schema definition

1type AutoModContent {
2
3# failureReasons are pieces of the reasons why the text is inappropriate analyzed
4# by automod.
5failureReasons: [AutoModFailureReason!]
6
7# text is the original raw string evaluated by automod.
8text: String!
9
10# canPass is the result whether the text passed automod enforcement.
11canPass: Boolean!
12
13# id is the ID generated for the test message (used for tracking).
14id: ID!
15
16# error is the error when querying automod content.
17error: AutoModContentError
18
19}