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