OBJECT
TestSessionTaskResult
Result of a test session's question.
link GraphQL Schema definition
1 type TestSessionTaskResult { 2 3 TestSessionTask! : 4 5 # Score received for the solution. 6 Int : 7 8 TaskSolution : 9 10 # A link to the coding replay. 11 # 12 # - Cost complexity: 1 13 String : 14 15 # Solve time in milliseconds. null if question not solved. 16 Int : 17 18 # Time the user was actively working on the question, in milliseconds. 19 Int : 20 21 # Time during which the question was opened in the user's browser, in 22 # milliseconds. 23 Int : 24 25 # The results of question levels. 26 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. 37 ID, : Int, : Int): TestSessionTaskResult ( : 38 39 # Information about suspicious activities detected for the question. 40 IntegrityReport! : 41 42 }