OBJECT

Subscription

link GraphQL Schema definition

1type Subscription {
2
3# Subscribe to chat activities of channels that the agent are serving or listening
4chatActivity(filter: ChatActivitySubscriptionFilter!): ChatActivitySubscriptionPayload!
5
6# Subscribe to messages from either an unserved visitor or a channel the agent is
7# currently serving. The message sent by the agent is included.
8message: MessageSubscriptionPayload!
9
10}

link Required by

This element is not required by anyone