OptionalbatchURL path of the server-side batch endpoint.
Must match the path configured via ServerBuilder.useBatching() on the
server (default '/__batch').
OptionalmaxMaximum number of requests to include in a single batch.
When the queue reaches this size the batch is flushed immediately,
before the windowMs timer fires.
OptionalskipPredicate to exclude specific requests from batching.
Return true to send the request immediately, bypassing the batch
queue. Useful for streaming endpoints, file uploads, or requests that
must not be delayed.
The fully-resolved request URL.
The RequestInit object for the request.
OptionalwindowTime window in milliseconds to collect requests before flushing.
The first request in a new window starts the timer. All subsequent requests received before the timer fires are included in the same batch.
Options for the batching middleware.