bear
bear
CCConvex Community
Created by Sean Knowles on 5/7/2024 in #support-community
Offline to online sync?
https://signaldb.js.org/ https://www.triplit.dev/ I've got these on my research list 🙂
10 replies
CCConvex Community
Created by Sean Knowles on 5/7/2024 in #support-community
Offline to online sync?
pglite, electric sql, couchdb there are a lot more afaik
10 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
I'll make my fields optional for now, thanks again
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
perfect 🙂
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
makes sense, thank you
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
I see
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
wait so I have to fix my data to push?
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
OH
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
my tasks are created though
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
really
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
No description
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
no it's very barebones
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
export const create = mutation({
args: {
data: v.any()
},
handler: async (ctx, { data }) => {
const userId = await getAuthUserId(ctx);
console.warn('adsflkjasldkf');
console.info('PLEASE WORK', userId);
console.log('CHECKIN', userId);
const id = await ctx.db.insert('tasks', { ...data, createdBy: userId });

return id;
}
});
export const create = mutation({
args: {
data: v.any()
},
handler: async (ctx, { data }) => {
const userId = await getAuthUserId(ctx);
console.warn('adsflkjasldkf');
console.info('PLEASE WORK', userId);
console.log('CHECKIN', userId);
const id = await ctx.db.insert('tasks', { ...data, createdBy: userId });

return id;
}
});
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
and I do see my requests coming in
37 replies
CCConvex Community
Created by bear on 10/1/2024 in #support-community
How do I enable console.log?
yep, normal console.log inside the handler
37 replies
CCConvex Community
Created by noaxis on 10/1/2024 in #support-community
sveltekit auth guides?
let me know if you have any questions @noaxis in the meanwhile I'll be implementing refreshing my token ;p
14 replies
CCConvex Community
Created by noaxis on 10/1/2024 in #support-community
sveltekit auth guides?
they do! but they're also confusing since people mix and match lots of auth solutions and some are even already using outdated packages (e.g. lucia v2)
14 replies
CCConvex Community
Created by noaxis on 10/1/2024 in #support-community
sveltekit auth guides?
particularly client.setAuth is a hard requirement for convex to send authenticated calls
14 replies
CCConvex Community
Created by noaxis on 10/1/2024 in #support-community
sveltekit auth guides?
the code is very ugly and will be refactored, but contains the minimal to get auth working
14 replies
CCConvex Community
Created by noaxis on 10/1/2024 in #support-community
sveltekit auth guides?
14 replies