OBJECT

CompanyTestSessionResult

The result of a completed company test session.

link GraphQL Schema definition

1type CompanyTestSessionResult implements 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.
15#
16# - Cost complexity: 3
17taskResults: [TestSessionTaskResult]!
18
19# Result of an individual questions. Either taskId or id needs to be provided, but
20# not both.
21#
22# - Cost complexity: 1
23#
24# Arguments
25# taskId: The ID of the question.
26# id: The ID of user's solution.
27taskResult(taskId: ID, id: ID): TestSessionTaskResult
28
29# Url to access the test session result.
30url: String
31
32# Coding score V1 in range of 300 to 850.
33codingScore: CodingScore @deprecated( reason: "Use versionedCodingScore instead." )
34
35# Coding score with version information.
36versionedCodingScore: VersionedCodingScore
37
38# Time during which the test was closed between the start date and the finish
39# date, in milliseconds.
40totalTimeClosed: Int
41
42}