OBJECT

ConversationalSession

link GraphQL Schema definition

  • type ConversationalSession implements Node {
  • # Summarized name for the conversation
  • conversationName: String!
  • # Creation Timestamp for session: UTC datetime eg 2022-01-31T12:00:00.000Z
  • creationTime: DateTime!
  • # Global unique id for the session node
  • id: ID!
  • # Update Timestamp for session: UTC datetime eg 2022-01-31T12:00:00.000Z
  • lastUpdateTime: DateTime!
  • # List of conversational prompts within the session
  • prompts: ConversationalPromptConnection
  • # Unique identifier for the session
  • sessionId: Int!
  • }