Files
file-one/convex/users.ts

11 lines
251 B
TypeScript
Raw Normal View History

2025-09-13 22:02:27 +01:00
import type { Id } from "./_generated/dataModel"
import { query } from "./_generated/server"
export const getCurrentUser = query({
handler: async (ctx) => {
return await ctx.db.get(
"jd7ampv4m200xr4yk2cfncccmh7qhj34" as Id<"users">,
2025-09-13 22:02:27 +01:00
)
},
})