INPUT_OBJECT

CreateDatabaseTaskInput

link GraphQL Schema definition

1input CreateDatabaseTaskInput {
6
2# Unique question name.
3# Has to be a valid identifier - should start with a letter and should not contain
4# spaces.
5name: String!
10
7# The title of the question is the more user-friendly version of the question
8# name.
9title: String
13
11# The number of test cases that will be made visible to the test-taker.
12sampleTestCount: Int
21
14# A list that describes customized execution time limits for one or more
15# languages.
16# If a language is not specified in the list, its execution time limit will be set
17# to the default.
18# In particular, you can pass an empty list to reset the time limits for all
19# languages to the default.
20timeLimits: [DatabaseLanguageTimeLimit!]
23
22executionEnvironments: [DatabaseExecutionEnvironment!]!
24}

link Required by