OBJECT
CompanyTestSessionResult
The result of a completed company test session.
link GraphQL Schema definition
1 type CompanyTestSessionResult implements TestSessionResult { 2 3 # The numeric score the test-taker achieved, out of the total max score of the 4 # test session. 5 Int : 6 7 # The number of tasks that the test-taker solved. 8 Int : 9 10 # A list of test-taker's results per task. 11 # 12 # - Cost complexity: 3 13 TestSessionTaskResult]! : [ 14 15 # Result of an individual task. Either taskId or id needs to be provided, but not 16 # both. 17 # 18 # - Cost complexity: 1 19 # 20 # Arguments 21 # taskId: The ID of the task. 22 # id: The ID of user's solution. 23 ID, : ID): TestSessionTaskResult ( : 24 25 # Url to access the test session result. 26 String : 27 28 }