oferitz
CCConvex Community
•Created by niels on 5/2/2024 in #general
If applicable, can anyone tell me why
18 replies
CCConvex Community
•Created by noob saibot on 4/17/2024 in #general
How can I run the equivalent of this
Not sure if you have the same use case but maybe you will find this helpful:
https://discord.com/channels/1019350475847499849/1019350478817079338/1220796223666257980
2 replies
CCConvex Community
•Created by Ross on 3/29/2024 in #general
resend problems
4. and finally the Next.js API route:
12 replies
CCConvex Community
•Created by Ross on 3/29/2024 in #general
resend problems
3. The internal action:
12 replies
CCConvex Community
•Created by Ross on 3/29/2024 in #general
resend problems
This is how I've implemented it, and it's probably not the best/efficient/clean way to do it, since you need to "curry" the JWT token all the way from the frontend through convex action to your Next.js API endpoint. This solution is only relevant if your trigger to send an email starts from a frontend action. For my use case, this is what I needed, and it is working.
So here it goes:
When you want to trigger your action, you need to grab the JWT token (I'm using Clerk, but there should be an equivalent hook for any other provider as well):
2. In your Convex action:
12 replies
CCConvex Community
•Created by oferitz on 3/22/2024 in #general
How would you perform a "contains" query
@Lee How would you do pagination in this case?
8 replies
CCConvex Community
•Created by oferitz on 3/22/2024 in #general
How would you perform a "contains" query
You can also collect all items and do the filtering in typescript like you suggested in the article.
But that will probably be a disaster if you have more than a couple of hundred items.
8 replies
CCConvex Community
•Created by oferitz on 3/22/2024 in #general
How would you perform a "contains" query
Yeah exactly, that's what i did, but it was a good read anyway.
8 replies
CCConvex Community
•Created by oferitz on 3/22/2024 in #general
How would you perform a "contains" query
Thanks! Don't know how i missed that, that's pretty new, right?
8 replies
CCConvex Community
•Created by tiernacity on 2/21/2024 in #support-community
Problem integrating react-email into an internal action
@Michal Srb Thanks, appreciate the effort to help, but I have fully moved to a solution where Convex is sending an API request to my Next.js backend (https://discord.com/channels/1019350475847499849/1019350478817079338/1214518908623654972), which handles the actual email sending. This also eliminates the CSS files limitation mentioned above.
42 replies
CCConvex Community
•Created by oferitz on 3/5/2024 in #general
Using JWT in actions
Thanks. I figured so. Can I suggest exposing the JWT token on the auth object as a feature request? This way, I can avoid carrying it from the client to the backend, as Convex is already aware of the token in the function/action context.
4 replies