Skip to content

Commit f390fd0

Browse files
Version Packages (#161)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent b05f163 commit f390fd0

File tree

5 files changed

+17
-19
lines changed

5 files changed

+17
-19
lines changed

.changeset/giant-llamas-peel.md

-7
This file was deleted.

.changeset/thin-maps-boil.md

-9
This file was deleted.

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# graphql-executor
22

3+
## 0.0.20
4+
5+
### Patch Changes
6+
7+
- 6b067721: introduce experimental parallel streaming
8+
9+
Experimental `inParallel` boolean argument to the stream directive may now be used to stream list items as they are ready instead of in sequential list order.
10+
11+
- 99a85d47: introduce experimental batched streaming
12+
13+
Experimental `maxChunkSize` and `maxInterval` arguments allows for increasing the number of items in each streamed payload up to the specified maximum size. A maximum interval (specified in milliseconds) can be used to send any ready items prior to the maximum chunk size.
14+
15+
When using a `maxChunkSize` greater than 1, the `data` property of execution patch results will consist of an array of items and a new `atIndex` property will contain the initial index for the items included within the chunk. When streaming in parallel, new `atIndices` property will be used instead of `atIndex` and will contain an array of the corresponding indices for each of the items included within the `data` property.
16+
317
## 0.0.19
418

519
### Patch Changes

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-executor",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"description": "A customizable GraphQL Spec compliant Executor class.",
55
"license": "MIT",
66
"main": "index",

0 commit comments

Comments
 (0)