Skip to content

@supabase-cache-helpers/[email protected]

Choose a tag to compare

@github-actions github-actions released this 15 May 06:06
· 32 commits to main since this release
418002b

Major Changes

  • 4063e68: feat: add support for pagination via rpc

    Breaking Changes
    All infinite queries now require the first argument to be a factory function:

    Before:

    useOffsetInfiniteQuery(query, ...);

    Now:

    useOffsetInfiniteQuery(() => query, ...);

    The reason is that we cannot re-use the same query instance anymore with RPCs.

    Also removed some of the long-deprecated aliases.

Minor Changes

  • 4063e68: feat: cursor based pagination

Patch Changes