Hmza
Hmza
CCConvex Community
Created by ReacherX founder on 5/14/2025 in #support-community
Experiencing "Invalid verifier" error with Google OAuth in Convex Auth
What is your callback url?
48 replies
CCConvex Community
Created by kamal.panara on 5/10/2025 in #general
advance filtering
i understand so its only going to load the documents that has those filtered tags in them right. despite you using more with loadMore.
25 replies
CCConvex Community
Created by kamal.panara on 5/10/2025 in #general
advance filtering
so i just tried this results.page = results.page.filter((contact) => Array.isArray(contact.tags) && contact.tags.some(tag => args.filterByTags!.includes(tag)) ); and it works for me. can you check on your end?
25 replies
CCConvex Community
Created by kamal.panara on 5/10/2025 in #general
advance filtering
but i'm now seeing that tags is not scalar. can you provide the complete schema of both tables and this function in full ? only way i can test at fullest.
25 replies
CCConvex Community
Created by kamal.panara on 5/10/2025 in #general
advance filtering
yeah so you can use the convex filter instead of ts filter to find relevant tags, instead of doing .some(tag => args.filterByTags?.includes(tag) you can do q.or and q.and to match the tags.
25 replies
CCConvex Community
Created by kamal.panara on 5/10/2025 in #general
advance filtering
you're right.
25 replies
CCConvex Community
Created by kamal.panara on 5/10/2025 in #general
advance filtering
i see, the paginate should be applied at the very end, when you're done filtering data. you should move the filter((contact) => before the .paginate
25 replies
CCConvex Community
Created by kamal.panara on 5/10/2025 in #general
advance filtering
you can do an alternative to includes by doing something like this: results = results.filter((q) => q.or( q.eq(q.field("assignedField"), userId), q.or(...YOURARRAY.map(id => q.eq(q.field("_id"), id))) ) ); assuming you have that ARRAY calculated already with items to find in convex table.
25 replies
CCConvex Community
Created by Web Dev Cody on 10/2/2024 in #support-community
Understanding usePaginatedQuery
Hey, can you elaborate on what kind of issues you are facing? If you are not doing pagination in numbers(1,2,3) and just using LoadMore function call to load page by page there shouldn't be any issues atleast with loading results.
26 replies
CCConvex Community
Created by Finnikia on 4/29/2025 in #general
Convex Auth
name is already included in default authTables, no need for a seperate table. if you want to see more details you can always refer to docs here: https://labs.convex.dev/auth/setup/schema
1 replies
CCConvex Community
Created by Hmza on 4/27/2025 in #show-and-tell
Build Virtual Humans with Brains easily with Athena IQ - Convex Chef
Quick update: 🤖 What's New: In-App Notifications: Get real-time updates when your chatbot training completes or if something needs your attention. Retry Mechanism for Training: If training data fails, you can now easily retry without starting over! Find retry button next to training record in Training History. Athena IQ is live on Product Hunt: https://www.producthunt.com/posts/athenaiq
2 replies
CCConvex Community
Created by sbkl on 4/28/2025 in #support-community
is convex down?
I can access it fine. Is there any specific error you are facing?
7 replies