OBJECT
ConversationalStreamEvent
The payload depends on stream's payloadType and can represent for instance graphQL query, graphQL query response, graphql response summary etc
link GraphQL Schema definition
- type ConversationalStreamEvent implements Node {
- # Creation Timestamp for event: UTC datetime eg 2022-01-31T12:00:00.000Z
- DateTime! :
- # Global unique ID for an stream event based on unique identifiers for sessionId,
- # streamName, promptId and sequenceNum
- ID! :
- # Boolean flag to mark the last event in any stream for a particular session and
- # prompt
- Boolean! :
- # The actual event data
- String! :
- # Represents the number of this event in the sequence of events in a stream for a
- # particular session and a
- # particular prompt in that session
- Int! :
- }