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