OBJECT

SparkyConversation

link GraphQL Schema definition

  • type SparkyConversation implements Node {
  • id: ID!
  • # Whether this is a demo conversation.
  • demo: Boolean!
  • createdAt: Time!
  • updatedAt: Time!
  • # The entity this conversation was started from. Used to determine which entity to
  • # link to when displaying the conversation.
  • startedFrom: SparkyConversationStartedFrom!
  • token: String
  • # The results of the reflection analysis, generated from all user sent messages in
  • # this conversation.
  • reflectionAnalysisResult: ReflectionResult
  • # The medical dictionary terms extracted from the conversation.
  • medicalTerms: Map
  • # The clinically relevant terms extracted from the conversation.
  • clinicalTerms: Map
  • # The word cloud image of the clinically relevant terms extracted from the
  • # conversation.
  • clinicalTermsWordcloudURL: String
  • # The word cloud image of the medical terms extracted from the conversation.
  • medicalTermsWordcloudURL: String
  • reflectableType: String
  • reflectableID: Int
  • streamChannelID: String
  • initialNudge: String
  • streamChannelType: String
  • model: String
  • convertedFromModel: String
  • # The configuration for this conversation.
  • config: SparkyChatConfig
  • tenant: Tenant
  • # The user who started this conversation.
  • user: User!
  • # The comment this conversation was started from.
  • comment: Comment
  • # The post this conversation was started from.
  • post: Post
  • # The collection of posts this conversation was started from.
  • collection: [Collection!]
  • # The video this conversation was started from
  • video: Video
  • # The messages in this conversation.
  • messages: [SparkyMessage!]
  • educationCredit: EducationCredit
  • # The conversation this conversation is targeting for earning reflective CE.
  • targetConversation: SparkyConversation
  • scores: [ReflectionAnalysisScore!]
  • experimentRuns: [ReflectionExperimentRun!]
  • # The survey submission for this conversation.
  • surveySubmission: CreditSurveySubmission
  • streamChannelCID: String!
  • }