DevStronauT
DevStronauT
CCConvex Community
Created by DevStronauT on 7/27/2024 in #support-community
Delete a document by multiple fields??
Hey I get it resolved Thanks @Michal Srb !
3 replies
CCConvex Community
Created by DevStronauT on 7/26/2024 in #support-community
Query documents by array of documentIds possible?
That's cool thanks @lee
16 replies
CCConvex Community
Created by DevStronauT on 7/26/2024 in #support-community
Query documents by array of documentIds possible?
Oh sorry I mean 2nd one swap the content please for both the points!!
16 replies
CCConvex Community
Created by DevStronauT on 7/26/2024 in #support-community
Query documents by array of documentIds possible?
1st one will have n db quires depending on length of documentIds array! 2nd one has only one query to DB but 2 heavy tasks 1stly fething all the documents in one go may be there are thousands and 2ndly filtering on that n number of documents!! Bit confused here!
16 replies
CCConvex Community
Created by DevStronauT on 7/26/2024 in #support-community
Query documents by array of documentIds possible?
That's great point @lee So 1 or 2? 1. filter from helpers! const documents = await filter(ctx.db.query("documents"), (document) => documentIds.includes(document._id) ).collect(); 2. Promise.all() by Javascript !! const documents = await Promise.all( documentIds.map(async (id) => { return await ctx.db.get(id); }) ); 👀 ??
16 replies
CCConvex Community
Created by DevStronauT on 7/26/2024 in #support-community
Query documents by array of documentIds possible?
I tried this one but I'm wondering if there are any inbuild convex queries to do so!
16 replies
CCConvex Community
Created by DevStronauT on 7/26/2024 in #support-community
How can we do advanced querying on nested arrays ??
Hey thanks think the same before but bit confused about relations in convex but thanks I'll study those articles and try implementing relations to get this resolved!
5 replies
CCConvex Community
Created by DevStronauT on 7/21/2024 in #support-community
Failed to install @convex-dev/convex-react-query
Thanks !
18 replies
CCConvex Community
Created by DevStronauT on 7/21/2024 in #support-community
Failed to install @convex-dev/convex-react-query
No description
18 replies
CCConvex Community
Created by DevStronauT on 7/21/2024 in #support-community
Failed to install @convex-dev/convex-react-query
Hey I've already install many packages that has slashes lol also I've installed @convex-dev/convex-react-query and tested too and the my app I live with the features from this package without any errors!
18 replies
CCConvex Community
Created by DevStronauT on 7/21/2024 in #support-community
Failed to install @convex-dev/convex-react-query
No description
18 replies
CCConvex Community
Created by DevStronauT on 7/21/2024 in #support-community
Failed to install @convex-dev/convex-react-query
Thanks for letting me know!
18 replies
CCConvex Community
Created by DevStronauT on 7/21/2024 in #support-community
Failed to install @convex-dev/convex-react-query
Oh man! I think, I'm solving few of mistakes done by convex these days 😂 lol First the clerk { auth } import discuss in twitter (https://x.com/dev_pratham_0g/status/1812767391689961861) remember and now this but I'm happy that I'm able point out these and tag you before any one else do! Just kidding Thank you so much @Michal Srb
18 replies