OBJECT

AutoModCaughtMessage

A message rejected by automod.

link GraphQL Schema definition

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