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 bca4bbe commit 811474eCopy full SHA for 811474e
src/tools/mongodb/read/export.ts
@@ -21,7 +21,12 @@ export class ExportTool extends MongoDBToolBase {
21
name: z
22
.literal("find")
23
.describe("The literal name 'find' to represent a find cursor as target."),
24
- arguments: z.object(FindArgs).describe("The arguments for 'find' operation."),
+ arguments: z
25
+ .object({
26
+ ...FindArgs,
27
+ limit: FindArgs.limit.removeDefault(),
28
+ })
29
+ .describe("The arguments for 'find' operation."),
30
}),
31
z.object({
32
0 commit comments