INPUT_OBJECT
CreateFreeCodingTaskInput
link GraphQL Schema definition
1 input 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. 6 String! : 11 8 # The title of the question is the more user-friendly version of the question 9 # name. 10 String : 13 12 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. 16 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. 24 LanguageTimeLimit!] : [ 26 }