Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@envelop/core@5.3.0
Minor Changes
#2607
3ebaa3bThanks @EmrysMyrddin! - Added new
withStateplugin utilityfor easy data sharing between hooks.
New plugin utility to ease data sharing between hooks
Sometimes, plugins can grow in complexity and need to share data between its hooks.
A way to solve this can be to mutate the graphql context, but this context is not always available
in all hooks in Yoga or Hive Gateway plugins. Moreover, mutating the context gives access to your
internal data to all other plugins and graphql resolvers, without mentioning performance impact on
field access on this object.
The recommended approach to this problem was to use a
WeakMapwith a stable key (often thecontextorrequestobject). While it works, it's not very convenient for plugin developers,and is prone to error with the choice of key.
The new
withStateutility solves this DX issue by providing an easy and straightforward API fordata sharing between hooks.
The
statepayload field will be available in all relevant hooks, making it easy to access shareddata. It also forces the developer to choose the scope for the data:
forOperationfor a data scoped to GraphQL operation (Envelop, Yoga and Hive Gateway)forRequestfor a data scoped to HTTP request (Yoga and Hive Gateway)forSubgraphExecutionfor a data scoped to the subgraph execution (Hive Gateway)Not all scopes are available in all hooks, the type reflects which scopes are available
Under the hood, those states are kept in memory using
WeakMap, which avoid any memory leaks.It is also possible to manually retrieve the state with the
getStatefunction:@envelop/apollo-datasources@6.0.0
Patch Changes
[
3ebaa3b]:@envelop/apollo-federation@7.0.0
Patch Changes
[
3ebaa3b]:@envelop/apollo-server-errors@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/apollo-tracing@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/auth0@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/dataloader@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/depth-limit@6.0.0
Patch Changes
[
3ebaa3b]:@envelop/disable-introspection@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/execute-subscription-event@7.0.0
Patch Changes
[
3ebaa3b]:@envelop/extended-validation@6.0.0
Patch Changes
[
3ebaa3b]:@envelop/filter-operation-type@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/fragment-arguments@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/generic-auth@10.0.0
Patch Changes
[
3ebaa3b]:@envelop/graphql-jit@10.0.0
Patch Changes
[
3ebaa3b]:@envelop/graphql-middleware@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/graphql-modules@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/immediate-introspection@6.0.0
Patch Changes
[
3ebaa3b]:@envelop/live-query@9.0.0
Patch Changes
[
3ebaa3b]:@envelop/newrelic@9.0.0
Patch Changes
[
3ebaa3b]:@envelop/on-resolve@6.0.0
Patch Changes
[
3ebaa3b]:@envelop/opentelemetry@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/operation-field-permissions@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/parser-cache@9.0.0
Patch Changes
[
3ebaa3b]:@envelop/persisted-operations@9.0.0
Patch Changes
[
3ebaa3b]:@envelop/preload-assets@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/prometheus@13.0.0
Patch Changes
[
3ebaa3b]:@envelop/rate-limiter@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/resource-limitations@7.0.0
Patch Changes
[
3ebaa3b]:@envelop/response-cache@8.0.0
Patch Changes
[
3ebaa3b]:@envelop/response-cache-cloudflare-kv@4.0.0
Patch Changes
@envelop/response-cache-redis@4.2.4
Patch Changes
@envelop/sentry@14.0.0
Patch Changes
[
3ebaa3b]:@envelop/statsd@7.0.0
Patch Changes
[
3ebaa3b]:@envelop/validation-cache@9.0.0
Patch Changes
[
3ebaa3b]:@envelop/testing@9.0.0
Patch Changes
[
3ebaa3b]: