INTERFACE
Test
A test defines a set of questions that a user may be invited to solve as part of an assessment.
link GraphQL Schema definition
1 interface Test { 2 3 # Test ID. 4 : ID! 5 6 # The display name of the test. 7 : String! 8 9 # The internal description of the test. 10 : String! 11 12 # A message shown to users before they begin an assessment created from the test. 13 : String! 14 15 # A message shown to users after they finish an assessment created from the test. 16 : String! 17 18 # The maximum time allowed to take the test, in milliseconds. 19 : Float! 20 21 }