OBJECT
Message
A message from a user.
link GraphQL Schema definition
1 type Message { 2 3 # The text and emoticon content of a message. 4 : MessageContent! 5 6 # Time the message was deleted or purged. Null if the message is not deleted. 7 : Time 8 9 # UUID of the message. 10 : ID! 11 12 # The message of the parent if this message is a reply. 13 : Message 14 15 # Replies to this message. 16 : MessageReplyConnection 17 18 # The user that sent the message. 19 : User 20 21 # Time the message was sent. 22 : Time! 23 24 }