OBJECT

RejectedChatMessage

link GraphQL Schema definition

1type RejectedChatMessage {
2
3# Original message's raw body.
4body: String
5
6# Optional list of fragments from the messages's body that lead to the message
7# rejection.
8failedFragments: [String]
9
10# The ID of the message.
11id: ID
12
13# Specifies if a action by a moderator has been taken on the message.
14isResolved: Boolean @deprecated( reason: "Use status field instead" )
15
16# The extracted caught message.
17message: Message
18
19# The user that created the message.
20sender: User
21
22# Status of the message.
23status: CaughtMessageStatus!
24
25# The channel where the message was originally sent.
26target: User
27
28}