OBJECT

ConversationalPrompt

link GraphQL Schema definition

  • type ConversationalPrompt implements Node {
  • # Context for the prompt optionally entered by client
  • context: String
  • # Creation Timestamp of prompt: UTC datetime eg 2022-01-31T12:00:00.000Z
  • creationTime: DateTime!
  • # Global unique id for the prompt
  • id: ID!
  • # Query prompt entered by client
  • prompt: String!
  • # Unique id for the prompt within a session
  • promptId: Int!
  • # Status of the prompt: ACTIVE, INTERRUPTED
  • status: ConversationalPromptStatus
  • # List of public streams for the prompt
  • streams: ConversationalEventStreamConnection
  • }