Releases: n1ru4l/graphql-live-query
@n1ru4l/[email protected]
Patch Changes
- 31ef74b: fix esm support for create-react-app and webpack
- Updated dependencies [31ef74b]
- @n1ru4l/[email protected]
@n1ru4l/[email protected]
Patch Changes
- 31ef74b: fix esm support for create-react-app and webpack
@n1ru4l/[email protected]
Patch Changes
- 31ef74b: fix esm support for create-react-app and webpack
@n1ru4l/[email protected]
Patch Changes
- 31ef74b: fix esm support for create-react-app and webpack
- Updated dependencies [31ef74b]
- @n1ru4l/[email protected]
- @n1ru4l/[email protected]
@n1ru4l/[email protected]
Patch Changes
- 31ef74b: fix esm support for create-react-app and webpack
- Updated dependencies [31ef74b]
- @n1ru4l/[email protected]
@n1ru4l/[email protected]
Minor Changes
-
c2dee5a: Support sending extensions from the client to the server.
client.execute({ operation, extensions: { secret: "I like turtles!" } });
The GraphQL over HTTP specification allows to send a extensions object as part of a GraphQL request to the server. This is now also supported. Possible use-cases might be access tokens or protocol extensions such as Automatic Persisted Queries.
@n1ru4l/[email protected]
Minor Changes
-
c2dee5a: Support sending extensions from the client to the server.
client.execute({ operation, extensions: { secret: "I like turtles!" } });
The GraphQL over HTTP specification allows to send a extensions object as part of a GraphQL request to the server. This is now also supported. Possible use-cases might be access tokens or protocol extensions such as Automatic Persisted Queries.
@n1ru4l/[email protected]
Patch Changes
-
108970b: Remove keys from the object instead of setting them to undefined.
const result = patch({ left: { a: { a: 2 } }, delta: { a: [null, 0, 0] } }); // Previously result was // { a: undefined } // Now it is // {}
@n1ru4l/[email protected]
Patch Changes
-
cf552ec: use the correct
execute
function for executing live queries.When using the
InMemoryLiveQueryStore.makeExecute
API the returned function did not properly use the providedexecute
function. Instead theexecute
function provided to theInMemoryLiveQueryStore
constructor was used. This issue caused unexpected behavior when using this library with envelop.
@n1ru4l/[email protected]
Patch Changes
- 30d2720: fix esm support