File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -246,6 +246,7 @@ function buildResponse(
246
246
* Essential assertions before executing to provide developer feedback for
247
247
* improper use of the GraphQL library.
248
248
*
249
+ * @deprecated will be removed in v17 in favor of assertValidSchema() and TS checks
249
250
* @internal
250
251
*/
251
252
export function assertValidExecutionArguments (
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import type {
19
19
ExecutionResult ,
20
20
} from './execute' ;
21
21
import {
22
+ // eslint-disable-next-line import/no-deprecated
22
23
assertValidExecutionArguments ,
23
24
buildExecutionContext ,
24
25
buildResolveInfo ,
@@ -160,6 +161,7 @@ export async function createSourceEventStream(
160
161
161
162
// If arguments are missing or incorrectly typed, this is an internal
162
163
// developer mistake which should throw an early error.
164
+ // eslint-disable-next-line import/no-deprecated
163
165
assertValidExecutionArguments ( schema , document , variableValues ) ;
164
166
165
167
// If a valid execution context cannot be created due to incorrect arguments,
You can’t perform that action at this time.
0 commit comments