OBJECT

AiGradingResult

The result of AI-grading a solution. A null AiGradingResult on a solution means the answer was not AI-graded (the question has no AI checker, or grading has not run).

link GraphQL Schema definition

1type AiGradingResult {
2
3# Free-text explanation produced by the AI grader.
4reasoning: String
5
6# Per-dimension scores. Empty when the rubric defines no dimensions.
7dimensionScores: [AiDimensionScore!]!
8
9}