OBJECT
Query
link GraphQL Schema definition
1 type Query { 2 3 # List of agents in the account 4 ( 5 : String, 6 : Int, 7 : String, 8 : Int, 9 : AgentsQueryFilter 10 ): AgentConnection! 11 12 # List of channels that are waiting to be served or being served by the agent 13 (: String, : Int, : String, : Int): ChannelConnection! 14 15 # List of departments in the account 16 (: String, : Int, : String, : Int): DepartmentConnection! 17 18 # List of graphQL subscriptions that the agent has 19 ( 20 : String, 21 : Int, 22 : String, 23 : Int 24 ): GraphQLSubscriptionConnection! 25 26 }
link Required by
This element is not required by anyone