Definition
findExecutes a query and returns the first batch of results and the cursor id, from which the client can construct a cursor.
Tip
In
mongosh, this command can also be run through thedb.collection.find()ordb.collection.findOne()helper methods.Helper methods are convenient for
mongoshusers, but they may not return the same level of information as database commands. In cases where the convenience is not needed or the additional return fields are required, use the database command.
Compatibility
This command is available in deployments hosted in the following environments:
MongoDB Atlas: The fully managed service for MongoDB deployments in the cloud
Important
This command has limited support in M0 and Flex clusters. For more information, see Unsupported Commands.
MongoDB Enterprise: The subscription-based, self-managed version of MongoDB
MongoDB Community: The source-available, free-to-use, and self-managed version of MongoDB
Syntax
The find command has the following syntax:
Changed in version 5.0.
db.runCommand( { find: <string>, filter: <document>, sort: <document>, projection: <document>, hint: <document or string>, skip: <int>, limit: <int>, batchSize: <int>, singleBatch: <bool>, comment: <any>, maxTimeMS: <int>, readConcern: <document>, max: <document>, min: <document>, returnKey: <bool>, showRecordId: <bool>, tailable: <bool>, oplogReplay: <bool>, noCursorTimeout: <bool>, awaitData: <bool>, allowPartialResults: <bool>, collation: <document>, allowDiskUse : <bool>, let: <document> // Added in MongoDB 5.0 } )
Note
Since MongoDB 4.4, the find command ignores the
oplogReplay flag. If the oplogReplay flag is set,
the server accepts it for backwards compatibility, but has no effect.
Command Fields
The command accepts the following fields:
Field | Type | Description | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| string | The name of the collection or view to query. | ||||||||||
| document | Optional. The query predicate. If unspecified, then all documents in the collection will match the predicate. | ||||||||||
document | Optional. The sort specification for the ordering of the results. | |||||||||||
| document | Optional. The projection specification to determine which fields to include in the returned documents.
| ||||||||||
| string or document | Optional. Index specification. Specify either the index name as a string or the index key pattern. If specified, then the query system will only consider plans using the hinted index. With the following exception, | ||||||||||
| Positive integer | Optional. Number of documents to skip. Defaults to 0. | ||||||||||
| Non-negative integer | Optional. The maximum number of documents to return. If unspecified, then defaults to no limit. A limit of 0 is equivalent to setting no limit. | ||||||||||
| non-negative integer | Optional. The maximum number of documents that can be returned in each batch of a
query result. By default, the A Unlike the previous wire protocol version, a batchSize of 1 for
the | ||||||||||
| boolean | Optional. Determines whether to close the cursor after the first batch. Defaults to false. | ||||||||||
| any | Optional. A user-provided comment to attach to this command. Once set, this comment appears alongside records of this command in the following locations:
A comment can be any valid BSON type (string, integer, object, array, etc). Any comment set on a | ||||||||||
| non-negative integer | Optional. Specifies a time limit in milliseconds.
If you do not specify a value for MongoDB terminates operations that exceed their allotted time limit
using the same mechanism as When specifying | ||||||||||
| document | Optional. Specifies the read concern. The Possible read concern levels are:
For more formation on the read concern levels, see Read Concern Levels. The | ||||||||||
| document | Optional. The exclusive upper bound for a specific index. See
To use the | ||||||||||
| document | Optional. The inclusive lower bound for a specific index. See
To use the | ||||||||||
| boolean | Optional. If true, returns only the index keys in the resulting documents.
Default value is false. If returnKey is true and the | ||||||||||
| boolean | Optional. Determines whether to return the record identifier for each document. If true, adds a field $recordId to the returned documents. | ||||||||||
| boolean | Optional. Returns a tailable cursor for a capped collections. | ||||||||||
| boolean | |||||||||||
| boolean | Optional. Prevents the server from timing out non-session idle cursors after an inactivity period of 30 minutes. Ignored for cursors that are part of a session. For more information, refer to Session Idle Timeout. | ||||||||||
boolean | Optional. For queries against a sharded collection, allows the
command (or subsequent If | |||||||||||
| document | Optional. Specifies the collation to use for the operation. Collation allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks. The collation option has the following syntax: When specifying collation, the If the collation is unspecified but the collection has a
default collation (see If no collation is specified for the collection or for the operations, MongoDB uses the simple binary comparison used in prior versions for string comparisons. You cannot specify multiple collations for an operation. For example, you cannot specify different collations per field, or if performing a find with a sort, you cannot use one collation for the find and another for the sort. | ||||||||||
boolean | Optional. Use this option to override
Starting in MongoDB 6.0, if For details, see
For more complete documentation on For more information on memory restrictions for large in-memory sorts, see Sort and Index Use. | |||||||||||
document | Optional. Specifies a document with a list of variables. This allows you to improve command readability by separating the variables from the query text. The document syntax is: The variable is set to the value returned by the expression, and cannot be changed afterwards. To access the value of a variable in the command, use the double
dollar sign prefix ( To use a variable to filter results, you must access the variable
within the For a complete example using New in version 5.0. |
Output
The command returns a document that contains the cursor information, including the cursor ID and the first batch of documents. For example, the command returns the following document when run against a sharded collection:
{ "cursor" : { "firstBatch" : [ { "_id" : ObjectId("5e8e2ca217b5324fa9847435"), "zipcode" : "20001", "x" : 1 }, { "_id" : ObjectId("5e8e2ca517b5324fa9847436"), "zipcode" : "30001", "x" : 1 } ], "partialResultsReturned" : true, "id" : Long("668860441858272439"), "ns" : "test.contacts" }, "ok" : 1, "operationTime" : Timestamp(1586380205, 1), "$clusterTime" : { "clusterTime" : Timestamp(1586380225, 2), "signature" : { "hash" : BinData(0,"aI/jWsUVUSkMw8id+A+AVVTQh9Y="), "keyId" : Long("6813364731999420435") } } }
Field | Description |
|---|---|
| Contains the cursor information, including the
cursor If the operation against a sharded collection returns partial results
due to the unavailability of the queried shard(s), the If the queried shards are initially available for the
|
| Indicates whether the command has succeeded ( |
In addition to the aforementioned find-specific fields,
the db.runCommand() includes the following information for
replica sets and sharded clusters:
$clusterTimeoperationTime
See db.runCommand() Results for details.
If you don't require a raw command response, use the
db.collection.find() or db.collection.findOne()
helper methods.
Behavior
The following section describes behavioral considerations of the find()
command.
Order of Operations
MongoDB generally produces the output of a find() operation with the
following order of operations:
match
sort
skip
limit
project
MongoDB may execute components in a different order to optimize query performance while still maintaining the above order of operations.
$regex Find Queries No Longer Ignore Invalid Regex
Starting in MongoDB 5.1, invalid $regex options
options are no longer ignored. This change makes
$regex options more consistent with
the use of $regex in the aggregate command and
projection queries.
Sessions
For cursors created inside a session, you cannot call
getMore outside the session.
Similarly, for cursors created outside of a session, you cannot call
getMore inside a session.
Session Idle Timeout
MongoDB drivers and mongosh
associate all operations with a server session, with the exception of unacknowledged
write operations. For operations not explicitly associated with a
session (i.e. using Mongo.startSession()), MongoDB drivers
and mongosh create an implicit session and associate it
with the operation.
If a session is idle for longer than 30 minutes, the MongoDB server
marks that session as expired and may close it at any time. When the
MongoDB server closes the session, it also kills any in-progress
operations and open cursors associated with the session. This
includes cursors configured with noCursorTimeout() or
a maxTimeMS() greater than 30 minutes.
For operations that return a cursor, if the cursor may be idle for
longer than 30 minutes, issue the operation within an explicit session
using Mongo.startSession() and periodically refresh the
session using the refreshSessions command. See
Session Idle Timeout for more information.
Transactions
find can be used inside distributed transactions.
For cursors created outside of a transaction, you cannot call
getMoreinside the transaction.For cursors created in a transaction, you cannot call
getMoreoutside the transaction.
Important
In most cases, a distributed transaction incurs a greater performance cost over single document writes, and the availability of distributed transactions should not be a replacement for effective schema design. For many scenarios, the denormalized data model (embedded documents and arrays) will continue to be optimal for your data and use cases. That is, for many scenarios, modeling your data appropriately will minimize the need for distributed transactions.
For additional transactions usage considerations (such as runtime limit and oplog size limit), see also Production Considerations.
Client Disconnection
If the client that issued find disconnects before the operation
completes, MongoDB marks find for termination using
killOp.
Stable API
When using Stable API V1, the following
find command fields are not supported:
awaitDatamaxminnoCursorTimeoutreturnKeyshowRecordIdtailable
Index Filters and Collations
Starting in MongoDB 6.0, an index filter uses the collation previously set using the planCacheSetFilter
command.
Starting in MongoDB 8.0, use query settings instead of adding index filters. Index filters are deprecated starting in MongoDB 8.0.
Query settings have more functionality than index filters. Also, index
filters aren't persistent and you cannot easily create index filters for
all cluster nodes. To add query settings and explore examples, see
setQuerySettings.
Find Cursor Behavior on Views
Starting in MongoDB 7.3, when you use a find command on a view
with the singleBatch: true and batchSize: 1 options, a cursor
is no longer returned. In previous versions of MongoDB these find queries
would return a cursor even when you set the single batch
option to true.
Query Settings
New in version 8.0.
You can use query settings to set index hints, set operation rejection filters, and other fields. The settings apply to the query shape on the entire cluster. The cluster retains the settings after shutdown.
The query optimizer uses the query settings as an additional input during query planning, which affects the plan selected to run the query. You can also use query settings to block a query shape.
To add query settings and explore examples, see
setQuerySettings.
You can add query settings for find, distinct,
and aggregate commands.
Query settings have more functionality and are preferred over deprecated index filters.
To remove query settings, use removeQuerySettings. To
obtain the query settings, use a $querySettings stage in an
aggregation pipeline.
Examples
The examples on this page use data from the sample_mflix sample dataset. For details on how to load this dataset into your self-managed MongoDB deployment, see Load the sample dataset. If you made any modifications to the sample databases, you may need to drop and recreate the databases to run the examples on this page.
Specify a Sort and Limit
The following command uses find on the movies collection to
find movies with an IMDB rating of 9 or higher that are in the Drama genre. The
command includes a projection to only return the title, imdb.rating,
and year fields in the matching documents.
The command sorts the documents in the result set by the title
field and limits the result set to 5 documents.
db.runCommand( { find: "movies", filter: { "imdb.rating": { $gte: 9 }, genres: "Drama" }, projection: { title: 1, "imdb.rating": 1, year: 1 }, sort: { title: 1 }, limit: 5 } )
Override Default Read Concern
To override the default read concern level of "local",
use the readConcern option.
This code example performs the following operations on the movies
collection on a replica set:
finds movies with an IMDB rating below 5
limits the results to 5 documents
specifies a read concern of
"majority"to read the most recent copy of the data that MongoDB wrote to a majority of the nodes.
db.runCommand( { find: "movies", filter: { "imdb.rating": { $lt: 5 } }, limit: 5, readConcern: { level: "majority" } } )
Regardless of the read concern level, the most recent data on a node may not reflect the most recent version of the data in the system.
The getMore command uses the readConcern level
specified in the originating find command.
A readConcern can be specified for the mongosh method
db.collection.find() using the cursor.readConcern()
method:
db.movies.find( { "imdb.rating": { $lt: 2 } } ).readConcern("majority")
For more information on available read concerns, see Read Concern.
Specify Collation
Collation allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.
This example performs the following operations:
finds movies with the title
Les Misérablesand date of2012sorts the matching documents by
titleruns
findwith a French collation (locale: "fr") and accent-insensitive matching (strength: 1):
db.runCommand( { find: "movies", filter: { title: "les misérables", year: 2012 }, sort: { title: 1 }, collation: { locale: "fr", strength: 1 } } )
mongosh provides the cursor.collation() to
specify collation for a
db.collection.find() operation.
Use Variables in let
The following example defines a targetTitle variable and uses it
to find movies by comparing the title field against the variable value.
This example finds all movies with the title "The Godfather":
db.movies.runCommand( { find: db.movies.getName(), filter: { $expr: { $eq: [ "$title", "$$targetTitle" ] } }, let : { targetTitle: "The Godfather" } } )