OBJECT

Query

link GraphQL Schema definition

1type Query {
2
3# List of agents in the account
4agents(
5after: String,
6first: Int,
7before: String,
8last: Int,
9filter: AgentsQueryFilter
10): AgentConnection!
11
12# List of channels that are waiting to be served or being served by the agent
13channels(after: String, first: Int, before: String, last: Int): ChannelConnection!
14
15# List of departments in the account
16departments(after: String, first: Int, before: String, last: Int): DepartmentConnection!
17
18# List of graphQL subscriptions that the agent has
19graphQLSubscriptions(
20after: String,
21first: Int,
22before: String,
23last: Int
24): GraphQLSubscriptionConnection!
25
26}

link Required by

This element is not required by anyone