INPUT_OBJECT

EditStandardTaskInput

link GraphQL Schema definition

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

link Required by