find¶
On this page
Definition¶
-
find¶ New in version 3.2.
Executes a query and returns the first batch of results and the cursor id, from which the client can construct a cursor.
The
findcommand has the following form:The command accepts the following fields:
Field Type Description findstring The name of the collection or view to query. filterdocument Optional. The query predicate. If unspecified, then all documents in the collection will match the predicate. sortdocument Optional. The sort specification for the ordering of the results. projectiondocument Optional. The projection specification to determine which fields to include in the returned documents. See Project Fields to Return from Query and Projection Operators.
find()operations on views do not support the following projection operators:hintstring 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. skipPositive integer Optional. Number of documents to skip. Defaults to 0. limitNon-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. batchSizenon-negative integer Optional. The number of documents to return in the first batch. Defaults to 101. A batchSize of 0 means that the cursor will be established, but no documents will be returned in the first batch.
Unlike the previous wire protocol version, a batchSize of 1 for the
findcommand does not close the cursor.singleBatchboolean Optional. Determines whether to close the cursor after the first batch. Defaults to false. commentstring Optional. A comment to attach to the query to help interpret and trace query profiledata.maxScanpositive integer Optional. Maximum number of documents or index keys to scan when executing the query. maxTimeMSpositive integer Optional. The cumulative time limit in milliseconds for processing operations on the cursor. MongoDB aborts the operation at the earliest following interrupt point.
Tip
When specifying
linearizable read concern, always usemaxTimeMSin case a majority of data bearing members are unavailable.maxTimeMSensures that the operation does not block indefinitely and instead ensures that the operation returns an error if the read concern cannot be fulfilled.readConcerndocument Optional. Specifies the read concern. The option has the following syntax:
Possible read concern values are:
"local". This is the default read concern level."majority". Available for replica sets that use WiredTiger storage engine."linearizable". Available for read operations on theprimaryonly.
For more formation on the read concern levels, see Read Concern Levels.
The
getMorecommand uses thereadConcernlevel specified in the originatingfindcommand.maxdocument Optional. The exclusive upper bound for a specific index. See cursor.max()for details.mindocument Optional. The inclusive lower bound for a specific index. See cursor.min()for details.returnKeyboolean Optional. If true, returns only the index keys in the resulting documents. Default value is false. If returnKey is true and the findcommand does not use an index, the returned documents will be empty.showRecordIdboolean Optional. Determines whether to return the record identifier for each document. If true, adds a field $recordId to the returned documents. snapshotboolean Optional. Prevents the cursor from returning a document more than once because of an intervening write operation. tailableboolean Optional. Returns a tailable cursor for a capped collections. awaitDataboolean Optional. Use in conjunction with the tailable option to block a getMorecommand on the cursor temporarily if at the end of data rather than returning no data. After a timeout period,findreturns as normal.oplogReplayboolean Optional. Internal use for replica sets. To use oplogReplay, you must include the following condition in the filter:
noCursorTimeoutboolean Optional. Prevents the server from timing out idle cursors after an inactivity period (10 minutes). allowPartialResultsboolean Optional. For queries against a sharded collection, returns partial results from the mongosif some shards are unavailable instead of throwing an error.collationdocument 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
localefield is mandatory; all other collation fields are optional. For descriptions of the fields, see Collation Document.If the collation is unspecified but the collection has a default collation (see
db.createCollection()), the operation uses the collation specified for the collection.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.
New in version 3.4.
Examples¶
Specify a Sort and Limit¶
The following command runs the find
command filtering on the rating field and the cuisine field.
The command includes a projection to only return the
following fields in the matching documents: _id, name,
rating, and address fields.
The command sorts the documents in the result set by the name
field and limits the result set to 5 documents.
Override Default Read Concern¶
To override the default read concern level of "local",
use the readConcern option.
The following operation on a replica set specifies a read
concern of "majority" to read the most recent copy of
the data confirmed as having been written to a majority of the nodes.
To use read concern level of "majority",
- you must start the
mongodinstances with the--enableMajorityReadConcerncommand line option (or thereplication.enableMajorityReadConcernset totrueif using a configuration file). - replica sets must use WiredTiger storage engine and election
protocol version 1.
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 mongo shell method
db.collection.find() using the cursor.readConcern
method:
For more information on available read concerns, see Read Concern.
Specify Collation¶
New in version 3.4.
Collation allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.
The following operation runs the find
command with the collation specified:
The mongo shell provides the cursor.collation() to
specify collation for a
db.collection.find() operation.
See also