```ts const monitors = await db.monitors.findMany({ take: 10 }); console.log("monitors: ", monitors.length); ``` ```sh monitors: 606 ``` Im trying to achive the iteration take/skip and I see always return all de documents, maybe I missing something?
Im trying to achive the iteration take/skip and I see always return all de documents, maybe I missing something?