It would be awesome if there is an option to skip query, like the `convex/react` way. Currently it is achievable using the following: ```ts const query = $derived(skip && useQuery(api.posts.get, () => someArgs)); ``` But this is cleaner in terms of dx: ```ts const query = useQuery(api.posts.get, () => someArgs, { skip }); ```