- Node.js Tutorial
- NodeJS Home
- NodeJS Introduction
- NodeJS Setup
- NodeJS First App
- NodeJS REPL
- NodeJS Command Line
- NodeJS NPM
- NodeJS Callbacks
- NodeJS Events
- NodeJS Event-Loop
- NodeJS Event-Emitter
- NodeJS Global-Objects
- NodeJS Console
- NodeJS Process
- NodeJS Buffers
- NodeJS Streams
- Node.js File Handling
- Node.js File System
- Node.js Read/Write File
- Working with folders in Node.js
- HTTP and Networking
- Node.js HTTP Module
- Anatomy of an HTTP Transaction
- Node.js MongoDB
- MongoDB Get Started
- MongoDB Create Database
- MongoDB Create Collection
- MongoDB Insert
- MongoDB Find
- MongoDB Query
- MongoDB Sort
- MongoDB Delete
- MongoDB Update
- MongoDB Limit
- MongoDB Join
- Node.js MySQL
- MySQL Get Started
- MySQL Create Database
- MySQL Create Table
- MySQL Insert Into
- MySQL Select From
- MySQL Where
- MySQL Order By
- MySQL Delete
- MySQL Update
- MySQL Join
- Node.js Modules
- Node.js Modules
- Node.js Built-in Modules
- Node.js Utility Modules
- Node.js Web Module
- Node.js Advanced
- Node.js Debugger
- Node.js Scaling Application
- Node.js Packaging
- Node.js Express Framework
- Node.js RESTFul API
- Node.js Useful Resources
- Node.js Useful Resources
- Node.js Discussion
Node.js MongoDB Limit
The limit
operation in MongoDB is used to restrict the number of documents returned by a query. This can be useful when you want to control the size of the dataset returned, especially when dealing with large collections.
Key Features of MongoDB Limit
- Restrict Query Results: Limit the number of documents returned by a query.
- Improves Performance: Reduces the amount of data retrieved, improving performance.
- Useful for Pagination: Often used in conjunction with skip for pagination functionality.
Step 1 Prerequisites
Ensure MongoDB is installed and running, and the mongodb
package is installed in your project.
npm install mongodb
Step 2 Using Limit in a Query
You can apply the limit()
method to restrict the number of documents returned by a query.
Example Code
const { MongoClient } = require('mongodb');
// Connection URL and Database Name
const url = 'mongodb://127.0.0.1:27017';
const dbName = 'mydatabase';
async function limitDocuments() {
const client = new MongoClient(url);
try {
await client.connect();
const db = client.db(dbName);
const collection = db.collection('users');
// Retrieve the first 3 documents where age is greater than 25
const documents = await collection.find({ age: { $gt: 25 } }).limit(3).toArray();
console.log(documents);
} finally {
await client.close();
}
}
limitDocuments().catch(console.error);
Output:
[
{ name: 'Alice', age: 30 },
{ name: 'Bob', age: 28 },
{ name: 'Charlie', age: 32 }
]
Step 3 Using Limit with Skip for Pagination
limit
is often used in conjunction with the skip
method to implement pagination.
Example Code
async function paginateDocuments() {
const client = new MongoClient(url);
try {
await client.connect();
const db = client.db(dbName);
const collection = db.collection('users');
// Retrieve the next 3 documents, skipping the first 3
const documents = await collection.find({ age: { $gt: 25 } }).skip(3).limit(3).toArray();
console.log(documents);
} finally {
await client.close();
}
}
paginateDocuments().catch(console.error);
Output:
[
{ name: 'David', age: 35 },
{ name: 'Eve', age: 29 },
{ name: 'Frank', age: 40 }
]
Step 4 Limit with Sorting
You can use limit
in combination with the sort
method to retrieve a limited number of documents in a specific order.
Example Code
async function limitWithSort() {
const client = new MongoClient(url);
try {
await client.connect();
const db = client.db(dbName);
const collection = db.collection('users');
// Sort by age in descending order and limit the results to 3
const documents = await collection.find().sort({ age: -1 }).limit(3).toArray();
console.log(documents);
} finally {
await client.close();
}
}
limitWithSort().catch(console.error);
Output:
[
{ name: 'Frank', age: 40 },
{ name: 'David', age: 35 },
{ name: 'Charlie', age: 32 }
]
Step 5 Limit on Aggregation
You can also use limit
with aggregation pipelines to restrict the number of results returned by aggregation operations.
Example Code
async function limitAggregation() {
const client = new MongoClient(url);
try {
await client.connect();
const db = client.db(dbName);
const collection = db.collection('users');
// Aggregate and limit to 2 documents
const documents = await collection.aggregate([
{ $match: { age: { $gt: 25 } } },
{ $limit: 2 }
]).toArray();
console.log(documents);
} finally {
await client.close();
}
}
limitAggregation().catch(console.error);
Output:
[
{ name: 'Alice', age: 30 },
{ name: 'Bob', age: 28 }
]
Summary
The limit
operation in MongoDB with Node.js allows you to control the number of documents returned by queries, improving performance and aiding in pagination. It can be combined with other methods such as skip
, sort
, and aggregation pipelines for more complex queries. Always use limit
carefully to avoid retrieving unnecessary data.