INPUT_OBJECT

CreateFreeCodingTaskInput

link GraphQL Schema definition

1input CreateFreeCodingTaskInput {
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
17
14# The list of all the languages that are allowed to be used in this question,
15# or an empty list to allow all possible languages.
16allowedLanguages: [CodingLanguageName!]
25
18# A list that describes customized execution time limits for one or more
19# languages.
20# If a language is not specified in the list, its execution time limit will be set
21# to the default.
22# In particular, you can pass an empty list to reset the time limits for all
23# languages to the default.
24timeLimits: [LanguageTimeLimit!]
26}

link Required by