INPUT_OBJECT
TestCaseInput
A test case consists of a list of input values and an expected output for them.
link GraphQL Schema definition
1 input TestCaseInput { 6 2 # A list of input arguments where each value is a JSON-formatted string. 3 # Each input value in the list should match the corresponding type specified in 4 # the inputTypes list. 5 String]! : [ 10 7 # The output value as a JSON-formatted string. 8 # The output value should match the type specified by outputType. 9 String! : 11 }