INPUT_OBJECT
TestSessionInput
link GraphQL Schema definition
1 input TestSessionInput { 4 2 # The ID of the company test for which the session should be created. 3 ID! : 7 5 # The first name of the candidate. 6 String : 10 8 # The last name of the candidate. 9 String : 13 11 # The email address of the candidate. 12 String : 16 14 # If true, no invitation email will be sent to the candidate. Default: false. 15 Boolean : 22 17 # If true, and if there is already an incomplete invitation for this combo of test 18 # ID and non-empty email, 19 # that existing session will be returned instead of a new one being created. 20 # Default: false. 21 Boolean : 26 23 # Reminders that will be sent to this invitee until they complete the test 24 # session. Overrides test-level settings. 25 EmailReminder!] : [ 29 27 # Overrides default duration of the test. 28 Float : 33 30 # How long the invitation should last before expiring, in milliseconds. Overrides 31 # test-level settings. 32 Float : 36 34 # An arbitrary custom value that will be included in assessment result webhooks 35 String : 37 }