INPUT_OBJECT

EditFreeCodingTaskInput

link GraphQL Schema definition

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

link Required by

This element is not required by anyone