OBJECT

ConversationalEventStream

link GraphQL Schema definition

  • type ConversationalEventStream implements Node {
  • # Count of streams in this page.
  • count: Int
  • # Creation Timestamp for stream: UTC datetime eg 2022-01-31T12:00:00.000Z
  • creationTime: DateTime!
  • # relay-compatible connection edge
  • edges: [ConversationalEventStreamConnectionEdge!]
  • # List of events in the stream
  • events: ConversationalStreamEventConnection
  • id: ID!
  • pageInfo: PageInfo
  • # The type of payload the stream will contain. This can help the client in
  • # rendering of payload as charts,graphs etc
  • payloadType: String!
  • # Unique name of the stream across all possible conversational services(Global
  • # Search, IaC, QA) like Status, GraphQLQuery
  • streamName: String!
  • # Optional total count of streams
  • totalCount: Int
  • }