Lucas Couto
Lucas Couto
CCConvex Community
Created by Nishil Faldu on 2/8/2025 in #support-community
Combination of .paginate and getPage question
Yeah, we also always struggle with that and opened discord today exactly because of it. Wanted to see if I could find a clearer path for it, but couldn't find. I usually go with the batch loading approach, but I always get uncomfortable with it since it loads way more data than needed.
6 replies
CCConvex Community
Created by Lucas Couto on 1/20/2025 in #support-community
Query arguments issue?
Also probably worth noting that in my case, having the return of the useEffect unsubscribe was not a good option because that meant subscriptions were getting removed even when they were not supposed to. That's mainly because of how I had to structure the logic in the hook and there were some params in my dependency array that would trigger it (which in turn destroyed the subscription I wanted to keep alive) after my subscription was created.
12 replies
CCConvex Community
Created by Lucas Couto on 1/20/2025 in #support-community
Query arguments issue?
Unfortunately I don't have the time to write a full example, but I ended up following basically what @lee shared above. Every time your query params change, Convex creates a new subscription for the new group of params. Usually it's not a problem since components tend to get destroyed and then rebuilt quite often, but in our case that was just not an option. So I ended up following this pattern:
const convex = useConvex();

useEffect(() => {
const watch = convex.watchQuery(api.table.getTableData, {
param1: param1,
param2: param2,
timestamp: timestamp,
});

const unsubscribe = watch.onUpdate(() => {
// In here I have some checks to make sure it is ok to unsubscribe, but then just call the function.
unsubscribe();
});
}, [param1, param2, timestamp]);
const convex = useConvex();

useEffect(() => {
const watch = convex.watchQuery(api.table.getTableData, {
param1: param1,
param2: param2,
timestamp: timestamp,
});

const unsubscribe = watch.onUpdate(() => {
// In here I have some checks to make sure it is ok to unsubscribe, but then just call the function.
unsubscribe();
});
}, [param1, param2, timestamp]);
12 replies
CCConvex Community
Created by Lucas Couto on 1/20/2025 in #support-community
Query arguments issue?
Hey @Lee! We did end up going with watchQuery. It worked like a charm, thank you very much for your help 😁
12 replies
CCConvex Community
Created by Lucas Couto on 1/20/2025 in #support-community
Query arguments issue?
The main thing I'm trying to address with this timestamp is that I need this function to return only what actually changed between calls, not just a full result object every time.
12 replies
CCConvex Community
Created by Lucas Couto on 1/20/2025 in #support-community
Query arguments issue?
It's fine running a new query. The problem is that all previous subscriptions for different timestamps are still active. Adding a console.log does print each previous timestamp. I don't really have the option to unmount the component.
12 replies
CCConvex Community
Created by LifeIsBoring on 9/9/2024 in #support-community
Cannot get current user
Wanted to say a big thank you for sharing this. I just spent almost 2 hours trying to understand why getUserIdentity was returning null and this worked like a charm!
8 replies