INPUT_OBJECT

CreateStandardTaskInput

link GraphQL Schema definition

1input CreateStandardTaskInput {
7
2# Unique question name, which will also be used as the name of the function
3# signature in the code.
4# Has to be a valid identifier - should start with a letter and should not contain
5# spaces.
6name: String!
11
8# The title of the question is the more user-friendly version of the question
9# name.
10title: String
13
12description: String
15
14testCasesInput: TestCasesInput
18
16# The number of test cases that will be made visible to the test-taker.
17sampleTestCount: Int
22
19# The list of all the languages that are allowed to be used in this question,
20# or an empty list to allow all possible languages.
21allowedLanguages: [CodingLanguageName!]
30
23# A list that describes customized execution time limits for one or more
24# languages.
25# If a language is not specified in the list, its execution time limit will be set
26# to the default.
27# In particular, you can pass an empty list to reset the time limits for all
28# languages to the default.
29timeLimits: [LanguageTimeLimit!]
31}

link Required by