Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tanstack skipToken is not supported in queries #465

Open
jameswilliams1 opened this issue Jun 23, 2024 · 0 comments
Open

Tanstack skipToken is not supported in queries #465

jameswilliams1 opened this issue Jun 23, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@jameswilliams1
Copy link

Describe the bug
Tanstack query exports a skipToken symbol which can be used to prevent a query running while waiting for a value to be defined (e.g. from a dependent query) - similar to using enabled but more type safe. This does not work with supabase-cache-helpers and gives a typescript error.

To Reproduce

import { useQuery } from '@supabase-cache-helpers/postgrest-react-query';
import { skipToken } from '@tanstack/react-query';

const supabase = supabaseBrowserClient();
const accountId: string | undefined = getAccountId()
const { data } = useQuery(
    accountId ? myDependentQuery(supabase, accountId) : skipToken,
  );
// No overload matches this call...

Expected behavior
Using skipToken in a query should be possible.

Additional context
Add any other context about the problem here.

@jameswilliams1 jameswilliams1 added the bug Something isn't working label Jun 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant