OBJECT
DatabaseEnvironmentConfigType
link GraphQL Schema definition
1 type DatabaseEnvironmentConfigType { 2 3 # This script will run before each test case. Declare all the required tables 4 # here. 5 : String! 6 7 # This cleanup script will run after each test case. Clean up the tables here by 8 # dropping them. 9 : String! 10 11 : [DatabaseTestCaseInputType] 12 13 # The text of the question that will be shown to the user. 14 : String! 15 16 # The names of tables that will be displayed as test case input. If the list is 17 # empty, no input tables will be shown. 18 : [String] 19 20 }