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. 0 if question not solved. 16 Int : 17 18 # Time the user was actively working on the question, in milliseconds. 19 Int : 20 21 # The results of question levels. 22 TestSessionTaskResult] : [ 23 24 # Result of an individual level of the current question. Either levelId or 25 # levelNumber needs to be provided, but not both. 26 # LevelNumber starts at 1. 27 # 28 # Arguments 29 # levelId: The ID of the level. 30 # levelNumber: The 1-based level index. 31 ID, : Int): TestSessionTaskResult ( : 32 33 }