API Reference Index
This index documents the current stable MongoDB adapter APIs and shared runtime capabilities. MySQL and PostgreSQL adapter APIs will receive separate entries after runtime support, public types, examples, and verification coverage are available.
Core Concepts
Query Operations
Write Operations
Insert Operations
Update Operations
Convenience Methods
Delete Operations
Aggregation Operations
Advanced Features
Utilities and Configuration
Compatibility and Testing
By Feature Category
CRUD Operations
Create
- Insert one document -
insertOne - Insert many documents -
insertMany - Batch insert -
insertBatch - Write operations guide - Complete write operations guide
Read
- Find documents -
find - Find one document -
findOne - Paginated find -
findPage - Count documents -
count - Distinct values -
distinct
Update
- Update methods overview - Method choice, traditional operators, and pipeline handoff
- Update one document -
updateOne - Update many documents -
updateMany - Replace one document -
replaceOne - Find one and update -
findOneAndUpdate - Find one and replace -
findOneAndReplace
Delete
- Delete one document -
deleteOne - Delete many documents -
deleteMany - Find one and delete -
findOneAndDelete
Advanced Queries
- Aggregation pipeline - Aggregation pipelines
- Query plans - Query plans
- Chain queries - Chain queries
Performance and Cache
- Cache system - Cache system
- Pagination bookmarks - Pagination optimization
Entries, Examples, and Site Pages
Management, Indexes, and Expressions
Runtime and Deployment
ObjectId, Cache, and Troubleshooting
Start Path
Recommended reading order for new users:
- Installation - Install, connect, and run the first query.
- Basic usage - Run common CRUD, pagination, cache, and Model entry-point examples.
- Configuration reference - Choose constructor options for the service.
- Connection management - Learn connection lifecycle and accessors.
- Find documents - Learn query details.
- Insert one document / Insert many documents - Learn inserts.
- Update one document / Update many documents - Learn updates.
- Delete one document / Delete many documents - Learn deletes.
- Cache system - Understand the cache mechanism.
- Transaction management - Learn transaction management.
- Distributed deployment - Multi-instance deployment for production.
- Production rollout - Index, one-time data, CDC, and traffic-switch checks.
- Production data migration - Configuration-driven release from instance A to production.