We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7b6ee0 commit 4d20ac6Copy full SHA for 4d20ac6
npm-packages/private-demos/nextjs-15-app/convex/counter.ts
@@ -5,7 +5,7 @@ export const get = query({
5
args: {
6
counterName: v.string(),
7
},
8
- handler: async ({ db }, { counterName }: { counterName: string }) => {
+ handler: async ({ db }, { counterName }) => {
9
const counterDoc = await db
10
.query("counter_table")
11
.filter((q) => q.eq(q.field("name"), counterName))
0 commit comments