Participation Score
Participation Score
How much did a user participated in one Question? Note: Participation scores are calculated based on the origin question (question.forkedFromOrigin).
interface ParticipationScore {
  id: string
  userId: string
  questionId: string
  score: number
  courseId: string
  createdAt: any
  modifiedAt: any
  scoreParts?: {
    feedback: number
    quiz: number
    ownQuestion: number
    forks: number
  }
  // By CopyMissingPsInCourse Operation
  copiedFromId?: string
  copiedFromRoot?: true
}