-
-
Notifications
You must be signed in to change notification settings - Fork 814
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: When `batch` is set to true for a given subschemaConfig, batches all delegated root fields into a combined request passed to the executor. Moreover, batches all requests to a given subschema into the minimum number of requests, collecting queries and mutations separately, preserving operation order. Distributes properly pathed errors to the originating requests. Adapted from Gatsby query batcher by @vladar. Caveats: * Uses a Dataloader under the hood, which is created anew upon each request -- relies on a unique context argument per request to make this happen! * Does not pass `info` argument to the batched executor call, disabling any executors that used extensions annotated onto info. TODO: - Add testing! - Extensions support should be added by a custom option? Related: gatsbyjs/gatsby#22347 (comment) #1710 (comment) #1959 (comment) #1954
- Loading branch information
Showing
9 changed files
with
530 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import { getOperationAST } from 'graphql'; | ||
|
||
import isPromise from 'is-promise'; | ||
|
||
import DataLoader from 'dataloader'; | ||
|
||
import { ExecutionResult, Request } from '@graphql-tools/utils'; | ||
|
||
import { SubschemaConfig, ExecutionParams } from './types'; | ||
import { memoize2of3 } from './memoize'; | ||
import { mergeRequests } from './mergeRequests'; | ||
import { splitResult } from './splitResult'; | ||
|
||
export const getBatchingExecutor = memoize2of3(function ( | ||
_context: Record<string, any>, | ||
_subschemaConfig: SubschemaConfig, | ||
executor: ({ document, context, variables, info }: ExecutionParams) => ExecutionResult | Promise<ExecutionResult> | ||
) { | ||
const loader = new DataLoader(createLoadFn(executor)); | ||
return (request: Request) => loader.load(request); | ||
}); | ||
|
||
function createLoadFn( | ||
executor: ({ document, context, variables, info }: ExecutionParams) => ExecutionResult | Promise<ExecutionResult> | ||
) { | ||
return async (requests: Array<Request>): Promise<Array<ExecutionResult>> => { | ||
const requestBatches: Array<Array<Request>> = []; | ||
let index = 0; | ||
const request = requests[index]; | ||
let currentBatch: Array<Request> = [request]; | ||
requestBatches.push(currentBatch); | ||
const operationType = getOperationAST(request.document).operation; | ||
while (++index < requests.length) { | ||
const currentOperationType = getOperationAST(requests[index].document).operation; | ||
if (operationType === currentOperationType) { | ||
currentBatch.push(requests[index]); | ||
} else { | ||
currentBatch = [requests[index]]; | ||
requestBatches.push(currentBatch); | ||
} | ||
} | ||
|
||
let containsPromises = false; | ||
const executionResults: Array<ExecutionResult | Promise<ExecutionResult>> = []; | ||
requestBatches.forEach(requestBatch => { | ||
const mergedRequest = mergeRequests(requestBatch); | ||
const executionResult = executor(mergedRequest); | ||
|
||
if (isPromise(executionResult)) { | ||
containsPromises = true; | ||
} | ||
executionResults.push(executionResult); | ||
}); | ||
|
||
if (containsPromises) { | ||
return Promise.all(executionResults).then(resultBatches => { | ||
let results: Array<ExecutionResult> = []; | ||
resultBatches.forEach((resultBatch, index) => { | ||
results = results.concat(splitResult(resultBatch, requestBatches[index].length)); | ||
}); | ||
return results; | ||
}); | ||
} | ||
|
||
let results: Array<ExecutionResult> = []; | ||
(executionResults as Array<ExecutionResult>).forEach((resultBatch, index) => { | ||
results = results.concat(splitResult(resultBatch, requestBatches[index].length)); | ||
}); | ||
return results; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.