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 external name of the test. 10 : String! 11 12 # The internal description of the test. 13 : String! 14 15 # A message shown to users before they begin an assessment created from the test. 16 : String! 17 18 # A message shown to users after they finish an assessment created from the test. 19 : String! 20 21 # The maximum time allowed to take the test, in milliseconds. 22 : Float! 23 24 # Framework associated with this test, if any. 25 : Framework 26 27 # The company that owns this test. 28 # 29 # - Cost complexity: 1 30 : Company! 31 32 # Test labels 33 : [String!] 34 35 # Test session fetched by its unique ID. 36 # 37 # - Cost complexity: 1 38 # 39 # Arguments 40 # id: The ID of the test session to return. 41 (: ID!): CompanyTestSession 42 43 # A list of all test sessions of this test. 44 # Use 'first' and 'offset' arguments to limit results returned. 45 # 46 # - Cost complexity: 1 x first 47 (: Int, : Int): [CompanyTestSession!] 48 49 # A list of score range labels. 50 : [ScoreRangeLabel!] 51 52 # The subject line shown in the test invitation email. 53 : String 54 55 # The message shown in the test invitation email. 56 : String 57 58 # The subject line shown in the test expiration email. 59 : String 60 61 # The message shown in the test expiration email. 62 : String 63 64 # The subject line shown in the test completion email. 65 : String 66 67 # The message shown in the test completion email. 68 : String 69 70 # The templates for the email reminders. 71 : [TestReminderTemplate!]! 72 73 # Reminders that will be sent to invitees who have not yet completed a test 74 # session. 75 : [TestReminder!]! 76 77 # Behavioral profile configuration for this test, if applicable. 78 : BehavioralProfile 79 80 }