MongoDB
To use Payload with MongoDB, install the package @payloadcms/db-mongodb
. It will come with everything you need to store your Payload data in MongoDB.
Then from there, pass it to your Payload Config as follows:
Options
Option | Description |
---|---|
| Tell Mongoose to auto-pluralize any collection names if it encounters any singular words used as collection |
| Customize MongoDB connection options. Payload will connect to your MongoDB database using default options which you can override and extend to include all the options available to mongoose. |
| Customize Mongoose schema options for collections. |
| Set to true to disable hinting to MongoDB to use 'id' as index. This is currently done when counting documents for pagination, as it increases the speed of the count function used in that query. Disabling this optimization might fix some problems with AWS DocumentDB. Defaults to false |
| Customize the directory that migrations are stored. |
| An object with configuration properties used in transactions or |
| Enable language-specific string comparison with customizable options. Available on MongoDB 3.4+. Defaults locale to "en". Example: |
| By default, Payload strips all additional keys from MongoDB data that don't exist in the Payload schema. If you have some data that you want to include to the result but it doesn't exist in Payload, you can set this to |
| Set to |
Access to Mongoose models
After Payload is initialized, this adapter exposes all of your Mongoose models and they are available for you to work with directly.
You can access Mongoose models as follows:
- Collection models -
payload.db.collections[myCollectionSlug]
- Globals model -
payload.db.globals
- Versions model (both collections and globals) -
payload.db.versions[myEntitySlug]
Using other MongoDB implementations
Limitations with DocumentDB and Azure Cosmos DB:
- For Azure Cosmos DB you must pass
transactionOptions: false
to the adapter options. Azure Cosmos DB does not support transactions that update two and more documents in different collections, which is a common case when using Payload (via hooks). - For Azure Cosmos DB the root config property
indexSortableFields
must be set totrue
. - The Join Field is not supported in DocumentDB and Azure Cosmos DB, as we internally use MongoDB aggregations to query data for that field, which are limited there. This can be changed in the future.
- For DocumentDB pass
disableIndexHints: true
to disable hinting to the DB to useid
as index which can cause problems with DocumentDB.