OBJECT

Department

A department consists of a list of agents. Visitor can choose a department before start chatting.

link GraphQL Schema definition

1type Department {
2
3# The description of the department.
4description: String
5
6# Indicates if the department is enabled.
7enabled: Boolean!
8
9# Globally unique identifier.
10id: ID!
11
12# The list of members in the department.
13members(after: String, first: Int, before: String, last: Int): AgentConnection
14
15# The name of the department.
16name: String!
17
18# The raw id of the department.
19raw_id: ID!
20
21# The status of the department to indicates its availability.
22status: DEPARTMENT_STATUS!
23
24}