Replies: 1 comment
-
because the default value is You might also want to have a look at the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Describe the bug
FW : Vue (^3.5.13)
I attempted to control whether the query executes using the enabled option, as shown in the example below:
Your minimal, reproducible example
https://codesandbox.io/p/sandbox/distracted-antonelli-9dzdjl?file=%2Fsrc%2FExample.js%3A9%2C22
Steps to reproduce
Expected behavior
In this process, the values are, in order,
true
,undefined
,undefined
, andfalse
, so the result of the&&
operator isundefined
—a falsy value.The problem is that when enabled is false, the query function does not execute, but when it is a falsy value like undefined, the query function erroneously executes.
At this point, I question the fundamental logical inconsistency of only preventing execution when enabled is exactly false, while allowing execution for other falsy values.
How often does this bug happen?
None
Screenshots or Videos
Platform
Tanstack Query adapter
None
TanStack Query version
v5.62.2
TypeScript version
No response
Additional context
No response
If there are cases where execution should occur even when the value is falsy, I would appreciate it if you could let me know.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions