Skip to content

Commit 18387db

Browse files
ikhareConvex, Inc.
authored and
Convex, Inc.
committed
Removing old non-object syntax from public facing examples (#35055)
GitOrigin-RevId: 5e9953866cde7af5873a4f7aab25910d737633b8
1 parent 86c66af commit 18387db

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,10 @@ For a paginated query like this:
136136
```javascript
137137
import { query } from "./_generated/server";
138138

139-
export default query(async ({ db }, { paginationOpts }) => {
140-
return await db.query("messages").order("desc").paginate(paginationOpts);
139+
export default query({
140+
handler: async ({ db }, { paginationOpts }) => {
141+
return await db.query("messages").order("desc").paginate(paginationOpts);
142+
},
141143
});
142144
```
143145

0 commit comments

Comments
 (0)