Jamal
Jamal
Explore posts from servers
CCConvex Community
Created by Delveroff on 1/21/2025 in #general
helping Delveroff
internal functions can only be called by public convex functions, thats why this is not working
19 replies
CCConvex Community
Created by Delveroff on 1/21/2025 in #general
helping Delveroff
2. fetchQuery is meant to be used in your nextjs react component not in your convex/ function directory
19 replies
CCConvex Community
Created by Delveroff on 1/21/2025 in #general
helping Delveroff
So your defining a function test. 1. The internal function is missing the args object.
export const test = internalQuery({
args: { test: v.string() },
handler: async (ctx, args) => {
// your code
},
});
export const test = internalQuery({
args: { test: v.string() },
handler: async (ctx, args) => {
// your code
},
});
19 replies
CCConvex Community
Created by Delveroff on 1/21/2025 in #general
helping Delveroff
i would like to see how your using this function so i can debug the error better
19 replies
CCConvex Community
Created by Delveroff on 1/21/2025 in #general
helping Delveroff
Could you show a little code if you dont mind
19 replies
CCConvex Community
Created by Delveroff on 1/21/2025 in #general
helping Delveroff
I need to call internal queries/mutations remotely.
The only way to do this currently is using http actions https://docs.convex.dev/functions/http-actions. Then you can call convex functions from external API's
19 replies
CCConvex Community
Created by Delveroff on 1/21/2025 in #general
helping Delveroff
Are you using fetchQuery from convex/nextjs?
19 replies
CCConvex Community
Created by Nerdkidchiki on 1/16/2025 in #general
Food app notifications help
If your app is a website only it would be easier to use emails or text messages for notifications. Browser push notifications do exist but the api is different for every browser and you will have to do a lot of work to make sure it never fails
3 replies
CCConvex Community
Created by citrus on 1/12/2025 in #general
Convex YouTube Tutorials
Hey @citrus ive been developing notifications for my job with convex so if you have any questions just send a message!
3 replies
CCConvex Community
Created by Jamal on 1/8/2025 in #general
mutation / action calling
thank you!
5 replies
CCConvex Community
Created by Jamal on 1/8/2025 in #general
mutation / action calling
Let me rephrase: If a convex action is called from a mutation function and the action fails, does the mutation fail also or will it still commit the changes?
5 replies