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
  • creationTime: DateTime!
  • # Global unique ID for an stream event based on unique identifiers for sessionId,
  • # streamName, promptId and sequenceNum
  • id: ID!
  • # Boolean flag to mark the last event in any stream for a particular session and
  • # prompt
  • isEndOfStream: Boolean!
  • # The actual event data
  • payload: 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
  • sequenceNum: Int!
  • }