File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ export function execute(
210
210
/**
211
211
* Implements the "Executing operations" section of the spec.
212
212
*/
213
- function executeOperation (
213
+ export function executeOperation (
214
214
exeInfo : ExecutionInfo ,
215
215
) : PromiseOrValue <
216
216
ExecutionResult | AsyncGenerator < ExecutionResult , void , void >
@@ -234,7 +234,7 @@ export function executeQuery(
234
234
return executeQueryOrMutation ( exeInfo , { errors : [ ] } , executeFields ) ;
235
235
}
236
236
237
- function executeMutation (
237
+ export function executeMutation (
238
238
exeInfo : ExecutionInfo ,
239
239
) : PromiseOrValue < ExecutionResult > {
240
240
return executeQueryOrMutation ( exeInfo , { errors : [ ] } , executeFieldsSerially ) ;
@@ -1211,7 +1211,7 @@ export const defaultFieldResolver: GraphQLFieldResolver<unknown, unknown> =
1211
1211
* If the operation succeeded, the promise resolves to an AsyncIterator, which
1212
1212
* yields a stream of ExecutionResults representing the response stream.
1213
1213
*/
1214
- function executeSubscription (
1214
+ export function executeSubscription (
1215
1215
exeInfo : ExecutionInfo ,
1216
1216
) : PromiseOrValue <
1217
1217
ExecutionResult | AsyncGenerator < ExecutionResult , void , void >
You can’t perform that action at this time.
0 commit comments