ChatEvent
One real-time event on a chat session. Exactly one of message or progress
is populated, per kind.
type ChatEvent {
chat_conversation_id: ID
kind: ChatEventKind!
message: ChatMessage
progress: ChatAgentProgress
}
Fields
ChatEvent.chat_conversation_id ● ID scalar
ChatEvent.kind ● ChatEventKind! non-null enum
ChatEvent.message ● ChatMessage object
Populated when kind is MESSAGE_CREATED.
ChatEvent.progress ● ChatAgentProgress object
Populated when kind is AGENT_PROGRESS.
Returned By
chatConversationEvent subscription


