OBJECT
CompanyTest
A non-standardized test owned by a particular company.
link GraphQL Schema definition
1 type CompanyTest implements Test { 2 3 # Company 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 Int! : 20 21 # The company that owns this test. 22 # 23 # - Cost complexity: 1 24 Company! : 25 26 # Test labels 27 String] : [ 28 29 # Test session fetched by its unique ID. 30 # 31 # - Cost complexity: 1 32 # 33 # Arguments 34 # id: The ID of the test session to return. 35 ID!): CompanyTestSession ( : 36 37 # A list of all test sessions of this test. 38 # Use 'first' and 'offset' arguments to limit results returned. 39 # 40 # - Cost complexity: 1 x first 41 Int, : Int): [CompanyTestSession] ( : 42 43 # A list of score range labels. 44 ScoreRangeLabel] : [ 45 46 }