Skip to content

Releases: n1ru4l/graphql-live-query

@n1ru4l/in-memory-live-query-store@0.6.1

26 Feb 07:33
5937dbb
Compare
Choose a tag to compare

Patch Changes

  • 4017395: Add includeIdentifierExtension option for InMemoryLiveQueryStore constructor.

    Setting the includeIdentifierExtension option to true 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 if process.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

29 Jan 23:22
8c613c6
Compare
Choose a tag to compare

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

26 Jan 18:20
baf9c9b
Compare
Choose a tag to compare

Patch Changes

  • 5ca93e3: correctly detect the main operation of the sent graphqll document

@n1ru4l/in-memory-live-query-store@0.5.5

21 Jan 21:47
093802f
Compare
Choose a tag to compare

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

21 Jan 21:47
093802f
Compare
Choose a tag to compare

Patch Changes

  • 88270dc: feat: allow conditional live queries via the if argument on the live directive

@n1ru4l/graphql-live-query-patch@0.3.1

21 Jan 21:47
093802f
Compare
Choose a tag to compare

Patch Changes

  • 0caaad0: Ensure compat for non experimental graphql releases without defer and stream support.

@n1ru4l/socket-io-graphql-client@0.9.1

22 Dec 13:34
ccabbf6
Compare
Choose a tag to compare

Patch Changes

@n1ru4l/in-memory-live-query-store@0.5.4

22 Dec 13:34
ccabbf6
Compare
Choose a tag to compare

Patch Changes

@n1ru4l/graphql-live-query-patch@0.3.0

25 Nov 08:40
28e14d5
Compare
Choose a tag to compare

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

24 Nov 17:30
c41474b
Compare
Choose a tag to compare

Minor Changes

  • df4f39b: Return AsyncIterableIterator for the execution result instead of taking a sink as an argument.