OBJECT

AgentChannel

An agent to agent chat channel.

link GraphQL Schema definition

1type AgentChannel implements Channel {
2
3# The list of agents currently participating in the channel.
4agents(after: String, first: Int, before: String, last: Int): 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}

link Required by

This element is not required by anyone