OBJECT

TestSessionTaskResult

Result of a test session's question.

link GraphQL Schema definition

1type TestSessionTaskResult {
2
3sessionTask: TestSessionTask!
4
5# Score received for the solution.
6score: Int
7
8solution: TaskSolution
9
10# A link to the coding replay.
11#
12# - Cost complexity: 1
13replayUrl: String
14
15# Solve time in milliseconds. null if question not solved.
16solveTime: Int
17
18# Time the user was actively working on the question, in milliseconds.
19timeSpent: Int
20
21# Time during which the question was opened in the user's browser, in
22# milliseconds.
23timeOpen: Int
24
25# The results of question levels.
26levelResults: [TestSessionTaskResult]
27
28# Result of an individual level of the current question. Either levelId or
29# levelNumber needs to be provided, but not both.
30# LevelNumber starts at 1.
31#
32# Arguments
33# levelId: The ID of the level.
34# levelNumber: The 1-based level index.
35# timeOpen: Time during which the question's level was opened in
36# the user's browser, in milliseconds.
37levelResult(levelId: ID, levelNumber: Int, timeOpen: Int): TestSessionTaskResult
38
39# Information about suspicious activities detected for the question.
40integrityReport: IntegrityReport!
41
42}