INPUT_OBJECT

DatabaseEnvironmentConfig

link GraphQL Schema definition

1input DatabaseEnvironmentConfig {
5
2# This script will run before each test case. Declare all the required tables
3# here.
4setupScript: String!
9
6# This cleanup script will run after each test case. Clean up the tables here by
7# dropping them.
8teardownScript: String!
11
10testCases: [DatabaseTestCaseInput!]!
13
12description: 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.
16tableNames: [String!]
18}