OBJECT
Agent
A website agent that serves visitor's chat.
link GraphQL Schema definition
1 type Agent implements User { 2 3 # The display name of the agent. 4 String : 5 6 # The email of the agent. 7 String! : 8 9 # Globally unique identifier. 10 ID! : 11 12 # The full name of the agent. 13 String! : 14 15 # The raw id of the agent. 16 ID! : 17 18 # The status of the agent to indicate its availability. 19 AGENT_STATUS! : 20 21 }