Skip to content

Releases: n1ru4l/graphql-live-query

@n1ru4l/[email protected]

29 Oct 05:40
7c8b3e4
Compare
Choose a tag to compare

Patch Changes

@n1ru4l/[email protected]

29 Oct 05:40
7c8b3e4
Compare
Choose a tag to compare

Patch Changes

  • 31ef74b: fix esm support for create-react-app and webpack

@n1ru4l/[email protected]

29 Oct 05:40
7c8b3e4
Compare
Choose a tag to compare

Patch Changes

  • 31ef74b: fix esm support for create-react-app and webpack

@n1ru4l/[email protected]

29 Oct 05:40
7c8b3e4
Compare
Choose a tag to compare

Patch Changes

@n1ru4l/[email protected]

29 Oct 05:40
7c8b3e4
Compare
Choose a tag to compare

Patch Changes

@n1ru4l/[email protected]

23 Oct 17:59
bef9e73
Compare
Choose a tag to compare

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]

23 Oct 17:59
bef9e73
Compare
Choose a tag to compare

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]

23 Oct 17:59
bef9e73
Compare
Choose a tag to compare

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]

23 Oct 17:59
bef9e73
Compare
Choose a tag to compare

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 provided execute function. Instead the execute function provided to the InMemoryLiveQueryStore constructor was used. This issue caused unexpected behavior when using this library with envelop.

@n1ru4l/[email protected]

28 Sep 11:19
8734f4c
Compare
Choose a tag to compare

Patch Changes