OBJECT

MessageReplyConnection

A list of messages.

link GraphQL Schema definition

1type MessageReplyConnection {
2
3# Nodes is the list of replies to a message.
4nodes: [Message!]!
5
6# The total number of replies to a message.
7totalCount: Int!
8
9}