
MongoDB Find
CertifiedQuery documents from MongoDB
MongoDB Find
Query documents from MongoDB
Executes find on a collection with optional projection, sort, skip, and limit. Filter/projection/sort accept BSON strings or maps rendered from Flow variables. Results are fetched in-memory by default or stored as Ion in internal storage when store is true.
type: io.kestra.plugin.mongodb.FindExamples
id: mongodb_find
namespace: company.team
tasks:
- id: find
type: io.kestra.plugin.mongodb.Find
connection:
uri: "mongodb://root:example@localhost:27017/?authSource=admin"
database: "my_database"
collection: "my_collection"
filter:
_id:
$oid: 60930c39a982931c20ef6cd6
Find documents in MongoDB based on a filter condition using MongoDB Query Language.
id: filter_mongodb
namespace: company.team
tasks:
- id: filter
type: io.kestra.plugin.mongodb.Find
connection:
uri: mongodb://host.docker.internal:27017/
database: local
collection: pokemon
store: true
filter:
base_experience:
$gt: 100
Properties
collection *Requiredstring
MongoDB collection
connection *RequiredNon-dynamic
MongoDB connection properties
io.kestra.plugin.mongodb.MongoDbConnection
Connection string to MongoDB server
URL format like mongodb://mongodb0.example.com: 27017
database *Requiredstring
MongoDB database
filter object
Query filter
BSON string or map rendered before execution.
limit integerstring
Limit
Maximum documents returned.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
projection object
Projection
BSON string or map selecting fields to return.
skip integerstring
Skip
Documents to skip before returning results.
sort object
Sort
BSON string or map defining sort order.
store booleanstring
falseStore results
When true, writes results as Ion to internal storage; otherwise returns rows. Defaults to false.
Outputs
rows array
Result rows
Present when store is false.
size integer
Rows fetched
uri string
uriStored result URI
Internal storage URI when store is true.
Metrics
records counter
countNumber of documents fetched from MongoDB