OBJECT

WhisperMessage

A message sent in a whisper thread.

link GraphQL Schema definition

1type WhisperMessage {
2
3# Content of the message.
4content: MessageBody!
5
6# Time the message was deleted.
7deletedAt: Time
8
9# Time the message was edited.
10editedAt: Time
11
12# User that sent the message.
13from: User!
14
15# UUID of the message.
16id: ID!
17
18# Unique nonce.
19nonce: String
20
21# Time the message was sent.
22sentAt: Time!
23
24# The thread the message is a part of.
25thread: WhisperThread!
26
27}