OBJECT
Department
A department consists of a list of agents. Visitor can choose a department before start chatting.
link GraphQL Schema definition
1 type Department { 2 3 # The description of the department. 4 : String 5 6 # Indicates if the department is enabled. 7 : Boolean! 8 9 # Globally unique identifier. 10 : ID! 11 12 # The list of members in the department. 13 (: String, : Int, : String, : Int): AgentConnection 14 15 # The name of the department. 16 : String! 17 18 # The raw id of the department. 19 : ID! 20 21 # The status of the department to indicates its availability. 22 : DEPARTMENT_STATUS! 23 24 }