OBJECT
AutoModCaughtMessage
A message rejected by automod.
link GraphQL Schema definition
1 type AutoModCaughtMessage { 2 3 # Reason why the message was flagged and/or rejected. 4 : AutoModCaughtMessageCategory! 5 6 # id contains the UUID of the AutoModCaughtMessage. 7 : ID! 8 9 # The contents of the message itself, including its content, sender, sentAt 10 # timestamp, etc. 11 : ModLogsMessage! 12 13 # Time when a moderator allowed or denied a flagged message. 14 : Time 15 16 # The user (mod) who approve/denied the flagged message. 17 : User 18 19 # The approval status of the caught message. 20 : AutoModCaughtMessageStatus! 21 22 }