Kevin07
Kevin07
CCConvex Community
Created by David Alonso on 3/31/2025 in #support-community
Convex Storage Triggers
I haven't seen any examples of triggers used directly on storage items. But I have used triggers on database records that reference the storage id. Works nicely!
3 replies
CCConvex Community
Created by dengor on 3/26/2025 in #support-community
Can't start a local deployment
Hey are you currently using Node v18? I ran into the same issues with no logs, and switching to that helped!
5 replies
CCConvex Community
Created by faraway9911 on 2/9/2025 in #general
hey how do i execute a mutation? i'm
From the repo Running a mutation looks like
<script>
const client = useConvexClient();

let toSend = $state('');
let author = $state('me');

function onSubmit(e: SubmitEvent) {
const data = Object.fromEntries(new FormData(e.target as HTMLFormElement).entries());
client.mutation(api.messages.send, {
author: data.author as string,
body: data.body as string
});
}
</script>

<form on:submit|preventDefault={onSubmit}>
<input type="text" id="author" name="author" />
<input type="text" id="body" name="body" bind:value={toSend} />
<button type="submit" disabled={!toSend}>Send</button>
</form>
<script>
const client = useConvexClient();

let toSend = $state('');
let author = $state('me');

function onSubmit(e: SubmitEvent) {
const data = Object.fromEntries(new FormData(e.target as HTMLFormElement).entries());
client.mutation(api.messages.send, {
author: data.author as string,
body: data.body as string
});
}
</script>

<form on:submit|preventDefault={onSubmit}>
<input type="text" id="author" name="author" />
<input type="text" id="body" name="body" bind:value={toSend} />
<button type="submit" disabled={!toSend}>Send</button>
</form>
1 replies
CCConvex Community
Created by ballingt on 2/6/2025 in #announcements
Convex 1.19.0
Amazing work @ballingt and team! 🙏
3 replies
CCConvex Community
Created by Tiger 🐅 on 12/20/2024 in #general
tiger9644's Thread
My assumption is that it wouldn't be the best, as there would be a huge excess of mutations / users subscribed to the associated queries
31 replies
CCConvex Community
Created by Sean S on 9/28/2024 in #show-and-tell
I built an AI Choose your own adventure storytelling app. Convex is my co-pilot
Great stuff, I had been considering creating something similar! Awesome to see it out there in the world
3 replies