OBJECT

DatabaseEnvironmentConfigType

link GraphQL Schema definition

1type DatabaseEnvironmentConfigType {
2
3# This script will run before each test case. Declare all the required tables
4# here.
5setupScript: String!
6
7# This cleanup script will run after each test case. Clean up the tables here by
8# dropping them.
9teardownScript: String!
10
11tests: [DatabaseTestCaseInputType]
12
13# The text of the question that will be shown to the user.
14description: 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.
18tableNames: [String]
19
20}