Ian Macartney
Ian Macartney
The test failures all seemed to be related to setting environment variables, which I'm assuming I'd need to set in my own GitHub environment. What's the best way to run...
More context on [Discord](https://discord.com/channels/1309558646228779139/1352441064190906378/1352640507846856807)
One random thought on typing the Workflow - instead of passing them as parameters, maybe you could have each `.step` return `this` with a different parametrized `Workflow` that now has...
I suspect for other packages, they're installing a non-alpha version due to peer dependencies - e.g. `npm ls convex` would likely have the migrations component using the version of convex...
My biggest question right now is around the `skip` arg. 1. Passing `{ skip: shouldSkip, ... }` or `"skip"` is redundant - ideally we start with just one. 1. If...
I'm leaning towards only having `useQuery(someCondition ? "skip" : { query, args: typeSafeArgs })`
@chenxin-yan I explored it in #262 (not making args missing, but unknown, since you want to do something like `useQuery({query: api.foo.bar, args: { userId }, skip: !userId })`. Unfortunately the...
As I was discussing this with a colleague, we realized that skipping when you already have preloaded data is less common of a need, versus the more specific need of...
I agree with Nipunn's assessment. `undefined` isn't technically a valid Convex value (under the hood it translates to an object with that key not present), though for ergonomics it has...
Great call. I think you’re right. We need to add this or something like it. I’m biased towards syntax like `usePreloadedQuery(isLoading? “skip”: preloadedTodos)` That way you don’t have to have...