INPUT_OBJECT
DatabaseTestCaseInput
link GraphQL Schema definition
1 input DatabaseTestCaseInput { 5 2 # The script that creates the tables and populates data for the test input. 3 # It is a combination of SQL commands and is equivalent to a SQL database dump. 4 String! : 18 6 # The expected output table in a comma-separated format which will be used to 7 # validate the correctness of the solution. 8 # format: 9 # 10 # "field_1,field_2,... 11 # 12 # x_1,y_1,... 13 # 14 # x_2,y_2,... 15 # 16 # ..." 17 String! : 19 }