OBJECT
AgentChannel
An agent to agent chat channel.
link GraphQL Schema definition
1 type AgentChannel implements Channel { 2 3 # The list of agents currently participating in the channel. 4 (: String, : Int, : String, : Int): AgentConnection 5 6 # Globally unique identifier. 7 : ID! 8 9 # The list of chat logs of the channel. 10 (: String, : Int, : String, : Int): ChatLogConnection 11 12 }
link Required by
This element is not required by anyone