ctx.db undefined
Uncaught TypeError: Cannot read properties of undefined (reading 'get')
Here is my code snippet:
export const chat = action({
args: {
imageId: v.string(),
},
handler: async (ctx, args) => {
console.log(args.imageId);
const document = await ctx.db.get(args.imageId);
return await ctx.storage.getUrl(document.body);
},
});
