This commit is contained in:
2026-01-23 14:26:06 +08:00
commit 244a8131f4
13 changed files with 554 additions and 0 deletions

10
convex/abcv.ts Normal file
View File

@@ -0,0 +1,10 @@
import { query } from "./_generated/server";
export const get = query({
args: {},
handler: async (ctx) => {
const auth = await ctx.auth.getUserIdentity();
console.log("Query abcv.get called", auth);
return await ctx.db.query("abcv").collect();
},
});