OBJECT
Mutation
link GraphQL Schema definition
1 type Mutation { 2 3 # Deletes the interview template with the given ID. 4 ID!): ID! ( : 5 6 # Creates an interview template. 7 ( 8 CreateInterviewTemplateInput! : 9 ): InterviewTemplate 10 11 # Edit the interview template with the given ID. 12 ( 13 ID!, : 14 EditInterviewTemplateInput! : 15 ): InterviewTemplate 16 17 # [*Internal use only*] 18 # Edits a company's service plans and custom features. 19 ( 20 ID!, : 21 CompanyPlanSettingsInput! : 22 ): Company 23 24 ( 25 TestSessionInput! : 26 ): CompanyTestSession 27 28 ( 29 ID!, : 30 Boolean : 31 ): ID! 32 33 # Arguments 34 # customDuration: Duration of the test for this test session, in 35 # milliseconds. 36 ( 37 ID!, : 38 Float! : 39 ): CompanyTestSession! 40 41 # Arguments 42 # expirationDate: Expiration for the test for this session, in 43 # milliseconds. 44 ( 45 ID!, : 46 Int! : 47 ): CompanyTestSession! 48 49 ID!): CompanyTestSession! ( : 50 51 ( 52 ID!, : 53 Boolean : 54 ): CompanyTestSession! 55 56 ID!, : ID!, : Int!): CompanyTestSession! ( : 57 58 ID!): CompanyTestSession! ( : 59 60 # [*Internal use only*] 61 # Creates or updates a role with the given key. 62 ID!, : String!, : [String!]!): Role! ( : 63 64 # Creates a new company-specific role. 65 # When companyId is not provided, it is inferred using authorization information. 66 ( 67 String!, : 68 String!]!, : [ 69 ID : 70 ): Role! 71 72 # Updates a company-specific role with the given key. 73 # The companyId field is deprecated and is left for backwards compatibility only. 74 # It is not used when performing the mutation. 75 ID!, : String!, : [String!]!): Role! ( : 76 77 # Deletes the role with the given key. 78 ID!): ID! ( : 79 80 # Creates a company test. 81 CreateCompanyTestInput!): CompanyTest ( : 82 83 # Edits a company test with the given ID. 84 ID!, : EditCompanyTestInput!): CompanyTest ( : 85 86 # Creates a live interview. 87 LiveInterviewInput): LiveInterview ( : 88 89 # Edit a live interview with a given ID. 90 ID!, : LiveInterviewInput!): LiveInterview ( : 91 92 # Delete a live interview with a given ID. 93 ID!): ID! ( : 94 95 # [*Internal use only*] 96 # Assign question to specific sets. 97 # 98 # - Cost complexity: 3 99 # - Rate limit: 10 requests / second 100 EditTaskSetsInput!): CommonTask ( : 101 102 # [*Internal use only*] 103 # Remove question from specific sets. 104 # 105 # - Cost complexity: 3 106 # - Rate limit: 10 requests / second 107 EditTaskSetsInput!): CommonTask ( : 108 109 ( 110 CreateCertificationRequestInput! : 111 ): CertificationRequest 112 113 # Given the input, revoke the corresponding certification request. 114 # There are three ways to specify which certification request to revoke: 115 # * by unique request ID; 116 # * by candidate email and test ID (your company ID will be used implicitly); 117 # * by candidate email, test ID and company ID. 118 ( 119 CertificationRequestInput! : 120 ): CertificationRequest! 121 122 # Set customized initial source code that will be presented when solving the 123 # question. 124 # Returns the modified question. 125 ( 126 ID!, : 127 LanguageName!, : 128 String! : 129 ): SingleEnvironmentTask 130 131 # Reset the initial source code of the question to the default value for the given 132 # language. 133 # Returns the modified question. 134 ID!, : LanguageName!): SingleEnvironmentTask ( : 135 136 # Creates a quiz question with one or more correct options. 137 ( 138 CreateQuizInput!, : 139 CreateTaskOptionsInput : 140 ): SingleEnvironmentTask 141 142 # Edits a quiz question with the given ID. 143 ID!, : EditQuizInput!): SingleEnvironmentTask ( : 144 145 # Creates a question with a function as an entry point that receives input and 146 # returns the output. 147 ( 148 CreateStandardTaskInput!, : 149 CreateTaskOptionsInput : 150 ): SingleEnvironmentTask 151 152 # Edits a standard question with the given ID. 153 ID!, : EditStandardTaskInput!): SingleEnvironmentTask ( : 154 155 # Update one or more front-end question parameters by the question ID 156 ID!, : UpdateFrontendTaskInput!): SingleEnvironmentTask ( : 157 158 # Creates a database question with test cases 159 ( 160 CreateDatabaseTaskInput!, : 161 CreateTaskOptionsInput : 162 ): DatabaseTask 163 164 # Edits a database question with the given ID. 165 ID!, : EditDatabaseTaskInput!): DatabaseTask ( : 166 167 # Creates a free coding question without any test case or validation. 168 ( 169 CreateFreeCodingTaskInput!, : 170 CreateTaskOptionsInput : 171 ): SingleEnvironmentTask 172 173 # Edits a free coding question with the given ID. 174 ID!, : EditStandardTaskInput!): SingleEnvironmentTask ( : 175 176 }
link Required by
This element is not required by anyone