INTERFACE

Channel

A chat conversation that describes participants, state, a list of chat logs and other meta information.

link GraphQL Schema definition

1interface Channel {
2
3# The list of agents currently participating in the channel.
4agents: AgentConnection
5
6# Globally unique identifier.
7id: ID!
8
9# The list of chat logs of the channel.
10logs(after: String, first: Int, before: String, last: Int): ChatLogConnection
11
12}