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