OBJECT
StandardizedTestSessionResult
The result of a completed standardized test session.
link GraphQL Schema definition
1 type StandardizedTestSessionResult implements TestSessionResult { 2 3 #   The numeric score the test-taker achieved, out of the total max score of the  4 #   test session. 5 : Int  6 7 #   Core skill scores such as implementation, speed and problem solving 8 #   Available only when the corresponding setting is enabled for the test 9 : CoreSkillScores  10 11 #   The number of questions that the test-taker solved. 12 : Int  13 14 #   A list of test-taker's result per question. 15 : [TestSessionTaskResult]!  16 17 #   Result of an individual question. Either taskId or ID needs to be provided, but  18 #   not both. 19 #  20 #   - Cost complexity: 1 21 #  22 # Arguments 23 #   taskId: The ID of the question. 24 #   id: The ID of user's solution. 25 (: ID, : ID): TestSessionTaskResult  26 27 #   Url to access the test session result. 28 : String @deprecated( reason: "Standardized results are deprecated. Use CompanyTestSessionResult instead."  ) 29 30 #   Certification status of certification test sessions. 31 : CertificationStatus  32 33 #   Coding score V1 in range of 300 to 850. 34 : CodingScore @deprecated( reason: "Use versionedCodingScore instead."  ) 35 36 #   Coding score with version information. 37 : VersionedCodingScore  38 39 }