Releases: n1ru4l/graphql-live-query
Releases · n1ru4l/graphql-live-query
@n1ru4l/in-memory-live-query-store@0.6.1
Patch Changes
-
4017395: Add
includeIdentifierExtension
option for InMemoryLiveQueryStore constructor.Setting the
includeIdentifierExtension
option totrue
will result in all the topics valid for a operation being added as a extensions field to the operation result.The option is set to
true
by default ifprocess.env.NODE_ENV === "development"
.{ "data": { "post": { "id": "1", "title": "lel" } }, "extensions": { "liveResourceIdentifier": ["Query.post", "Query.post(id:\"1\")", "Post:1"] }, "isLive": true }
@n1ru4l/in-memory-live-query-store@0.6.0
Minor Changes
- 50ffe13: Allow adding additional resource identifier in user-land via the liveQuery.collectResourceIdentifiers extensions field on schema fields.
@n1ru4l/socket-io-graphql-server@0.9.2
Patch Changes
- 5ca93e3: correctly detect the main operation of the sent graphqll document
@n1ru4l/in-memory-live-query-store@0.5.5
Patch Changes
- 88270dc: feat: allow conditional live queries via the if argument on the live directive
- 0caaad0: Ensure compat for non experimental graphql releases without defer and stream support.
- 76c459f: use a resource tracker for more efficient invalidations
- Updated dependencies [88270dc]
- @n1ru4l/graphql-live-query@0.7.1
@n1ru4l/graphql-live-query@0.7.1
Patch Changes
- 88270dc: feat: allow conditional live queries via the if argument on the live directive
@n1ru4l/graphql-live-query-patch@0.3.1
Patch Changes
- 0caaad0: Ensure compat for non experimental graphql releases without defer and stream support.
@n1ru4l/socket-io-graphql-client@0.9.1
Patch Changes
- 6915f6d: fix support safari 14
@n1ru4l/in-memory-live-query-store@0.5.4
Patch Changes
- 6915f6d: fix support safari 14
@n1ru4l/graphql-live-query-patch@0.3.0
Minor Changes
-
258640e: Namings are hard...
createLiveQueryPatchDeflator
->createLiveQueryPatchGenerator
applyLiveQueryPatchDeflator
->createApplyLiveQueryPatchGenerator
applyLiveQueryPatchInflator
->createApplyLiveQueryPatch
Create immutable patches be default.
@n1ru4l/socket-io-graphql-server@0.9.0
Minor Changes
- df4f39b: Return AsyncIterableIterator for the execution result instead of taking a sink as an argument.