INTERFACE

TestSessionResult

link GraphQL Schema definition

1interface TestSessionResult {
2
3# The numeric score the test-taker achieved, out of the total max score of the
4# test session.
5score: 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
9coreSkillScores: CoreSkillScores
10
11# The number of questions that the test-taker solved.
12solvedTaskCount: Int
13
14# A list of test-taker's results per question.
15taskResults: [TestSessionTaskResult]!
16
17# Result of an individual question. Either taskId or id needs to be provided, but
18# not both.
19# Exists only for completed test sessions.
20#
21# Arguments
22# taskId: The ID of the question.
23# id: The ID of user's solution.
24taskResult(taskId: ID, id: ID): TestSessionTaskResult
25
26# Url to access the test session result.
27url: String
28
29# Coding score V1 in range of 300 to 850.
30codingScore: CodingScore @deprecated( reason: "Use versionedCodingScore instead." )
31
32# Coding score with version information.
33versionedCodingScore: VersionedCodingScore
34
35}