├── .evergreen ├── config.yml ├── run-tests.sh └── setup.sh ├── .github ├── dependabot.yml └── workflows │ ├── PULL_REQUEST_TEMPLATE.md │ ├── codeql.yml │ ├── dist.yml │ ├── django_settings.py │ ├── linters.yml │ ├── mongodb_settings.py │ ├── release-python.yml │ ├── runtests.py │ ├── start_local_atlas.sh │ ├── test-python-atlas.yml │ ├── test-python-geo.yml │ ├── test-python.yml │ └── zizmor.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── THIRD-PARTY-NOTICES ├── django_mongodb_backend ├── __init__.py ├── aggregates.py ├── base.py ├── checks.py ├── client.py ├── compiler.py ├── creation.py ├── dbapi.py ├── expressions │ ├── __init__.py │ ├── builtins.py │ ├── expressions.py │ └── search.py ├── features.py ├── fields │ ├── __init__.py │ ├── array.py │ ├── auto.py │ ├── duration.py │ ├── embedded_model.py │ ├── embedded_model_array.py │ ├── json.py │ ├── objectid.py │ ├── polymorphic_embedded_model.py │ ├── polymorphic_embedded_model_array.py │ └── utils.py ├── forms │ ├── __init__.py │ └── fields │ │ ├── __init__.py │ │ ├── array.py │ │ ├── embedded_model.py │ │ ├── embedded_model_array.py │ │ └── objectid.py ├── functions.py ├── gis │ ├── __init__.py │ ├── adapter.py │ ├── features.py │ ├── lookups.py │ ├── operations.py │ └── schema.py ├── indexes.py ├── introspection.py ├── jinja2 │ └── mongodb │ │ └── widgets │ │ └── split_array.html ├── lookups.py ├── management │ ├── __init__.py │ └── commands │ │ └── __init__.py ├── managers.py ├── models.py ├── operations.py ├── query.py ├── query_utils.py ├── queryset.py ├── routers.py ├── schema.py ├── templates │ └── mongodb │ │ └── widgets │ │ └── split_array.html ├── test.py ├── transaction.py ├── utils.py ├── validation.py └── validators.py ├── docs ├── Makefile ├── _ext │ └── djangodocs.py ├── _static │ └── custom.css ├── conf.py ├── contents.rst ├── faq.rst ├── howto │ ├── contrib-apps.rst │ └── index.rst ├── index.rst ├── internals │ ├── bugs-and-features.rst │ ├── contributing │ │ ├── coding-style.rst │ │ ├── index.rst │ │ ├── unit-tests.rst │ │ └── writing-documentation.rst │ ├── deprecation.rst │ ├── index.rst │ ├── release-process.rst │ └── security.rst ├── intro │ ├── configure.rst │ ├── index.rst │ └── install.rst ├── make.bat ├── ref │ ├── contrib │ │ ├── gis.rst │ │ └── index.rst │ ├── database.rst │ ├── django-admin.rst │ ├── forms.rst │ ├── index.rst │ ├── models │ │ ├── fields.rst │ │ ├── index.rst │ │ ├── indexes.rst │ │ ├── models.rst │ │ ├── querysets.rst │ │ └── search.rst │ └── utils.rst ├── releases │ ├── 5.0.x.rst │ ├── 5.1.x.rst │ ├── 5.2.x.rst │ ├── 6.0.x.rst │ └── index.rst └── topics │ ├── embedded-models.rst │ ├── index.rst │ ├── known-issues.rst │ └── transactions.rst ├── pyproject.toml ├── requirements.txt ├── sbom.json └── tests ├── aggregation_ ├── __init__.py ├── models.py ├── test_stringagg.py └── tests.py ├── atlas_search_ ├── __init__.py ├── models.py └── test_search.py ├── backend_ ├── __init__.py ├── test_base.py └── test_features.py ├── basic_ ├── __init__.py ├── models.py └── test_escaping.py ├── db_functions_ ├── __init__.py ├── models.py ├── test_datetime.py └── tests.py ├── dbshell_ ├── __init__.py └── tests.py ├── expressions_ ├── __init__.py ├── test_combinable_search_expression.py └── test_value.py ├── forms_tests_ ├── __init__.py ├── test_array.py └── test_objectidfield.py ├── gis_tests_ ├── __init__.py ├── models.py └── tests.py ├── indexes_ ├── __init__.py ├── models.py ├── test_base.py ├── test_checks.py ├── test_condition.py └── test_search_indexes.py ├── invalid_models_tests_ ├── __init__.py └── test_autofield.py ├── lookup_ ├── __init__.py ├── models.py └── tests.py ├── model_fields_ ├── __init__.py ├── array_default_migrations │ ├── 0001_initial.py │ ├── 0002_integerarraymodel_field_2.py │ └── __init__.py ├── array_index_migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── test_arrayfield.py ├── test_autofield.py ├── test_durationfield.py ├── test_embedded_model.py ├── test_embedded_model_array.py ├── test_integerfield.py ├── test_objectidfield.py ├── test_polymorphic_embedded_model.py ├── test_polymorphic_embedded_model_array.py └── utils.py ├── model_forms_ ├── __init__.py ├── forms.py ├── models.py ├── test_embedded_model.py └── test_embedded_model_array.py ├── models_ ├── __init__.py ├── models.py ├── test_embedded_model.py └── test_routers.py ├── queries_ ├── __init__.py ├── models.py ├── test_explain.py ├── test_mql.py ├── test_objectid.py └── test_qs_combinators.py ├── raw_query_ ├── __init__.py ├── models.py └── test_raw_aggregate.py ├── schema_ ├── __init__.py ├── models.py └── test_embedded_model.py ├── transaction_hooks_ ├── __init__.py ├── models.py └── tests.py ├── transactions_ ├── __init__.py ├── models.py └── tests.py └── validators_ ├── __init__.py └── test_length.py /.evergreen/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.evergreen/config.yml -------------------------------------------------------------------------------- /.evergreen/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.evergreen/run-tests.sh -------------------------------------------------------------------------------- /.evergreen/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.evergreen/setup.sh -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/dist.yml -------------------------------------------------------------------------------- /.github/workflows/django_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/django_settings.py -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.github/workflows/mongodb_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/mongodb_settings.py -------------------------------------------------------------------------------- /.github/workflows/release-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/release-python.yml -------------------------------------------------------------------------------- /.github/workflows/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/runtests.py -------------------------------------------------------------------------------- /.github/workflows/start_local_atlas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/start_local_atlas.sh -------------------------------------------------------------------------------- /.github/workflows/test-python-atlas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/test-python-atlas.yml -------------------------------------------------------------------------------- /.github/workflows/test-python-geo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/test-python-geo.yml -------------------------------------------------------------------------------- /.github/workflows/test-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/test-python.yml -------------------------------------------------------------------------------- /.github/workflows/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.github/workflows/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/THIRD-PARTY-NOTICES -------------------------------------------------------------------------------- /django_mongodb_backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/__init__.py -------------------------------------------------------------------------------- /django_mongodb_backend/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/aggregates.py -------------------------------------------------------------------------------- /django_mongodb_backend/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/base.py -------------------------------------------------------------------------------- /django_mongodb_backend/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/checks.py -------------------------------------------------------------------------------- /django_mongodb_backend/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/client.py -------------------------------------------------------------------------------- /django_mongodb_backend/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/compiler.py -------------------------------------------------------------------------------- /django_mongodb_backend/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/creation.py -------------------------------------------------------------------------------- /django_mongodb_backend/dbapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/dbapi.py -------------------------------------------------------------------------------- /django_mongodb_backend/expressions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/expressions/__init__.py -------------------------------------------------------------------------------- /django_mongodb_backend/expressions/builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/expressions/builtins.py -------------------------------------------------------------------------------- /django_mongodb_backend/expressions/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/expressions/expressions.py -------------------------------------------------------------------------------- /django_mongodb_backend/expressions/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/expressions/search.py -------------------------------------------------------------------------------- /django_mongodb_backend/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/features.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/__init__.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/array.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/auto.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/duration.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/embedded_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/embedded_model.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/embedded_model_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/embedded_model_array.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/json.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/objectid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/objectid.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/polymorphic_embedded_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/polymorphic_embedded_model.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/polymorphic_embedded_model_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/polymorphic_embedded_model_array.py -------------------------------------------------------------------------------- /django_mongodb_backend/fields/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/fields/utils.py -------------------------------------------------------------------------------- /django_mongodb_backend/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/forms/__init__.py -------------------------------------------------------------------------------- /django_mongodb_backend/forms/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/forms/fields/__init__.py -------------------------------------------------------------------------------- /django_mongodb_backend/forms/fields/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/forms/fields/array.py -------------------------------------------------------------------------------- /django_mongodb_backend/forms/fields/embedded_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/forms/fields/embedded_model.py -------------------------------------------------------------------------------- /django_mongodb_backend/forms/fields/embedded_model_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/forms/fields/embedded_model_array.py -------------------------------------------------------------------------------- /django_mongodb_backend/forms/fields/objectid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/forms/fields/objectid.py -------------------------------------------------------------------------------- /django_mongodb_backend/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/functions.py -------------------------------------------------------------------------------- /django_mongodb_backend/gis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/gis/__init__.py -------------------------------------------------------------------------------- /django_mongodb_backend/gis/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/gis/adapter.py -------------------------------------------------------------------------------- /django_mongodb_backend/gis/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/gis/features.py -------------------------------------------------------------------------------- /django_mongodb_backend/gis/lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/gis/lookups.py -------------------------------------------------------------------------------- /django_mongodb_backend/gis/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/gis/operations.py -------------------------------------------------------------------------------- /django_mongodb_backend/gis/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/gis/schema.py -------------------------------------------------------------------------------- /django_mongodb_backend/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/indexes.py -------------------------------------------------------------------------------- /django_mongodb_backend/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/introspection.py -------------------------------------------------------------------------------- /django_mongodb_backend/jinja2/mongodb/widgets/split_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/jinja2/mongodb/widgets/split_array.html -------------------------------------------------------------------------------- /django_mongodb_backend/lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/lookups.py -------------------------------------------------------------------------------- /django_mongodb_backend/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_mongodb_backend/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_mongodb_backend/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/managers.py -------------------------------------------------------------------------------- /django_mongodb_backend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/models.py -------------------------------------------------------------------------------- /django_mongodb_backend/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/operations.py -------------------------------------------------------------------------------- /django_mongodb_backend/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/query.py -------------------------------------------------------------------------------- /django_mongodb_backend/query_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/query_utils.py -------------------------------------------------------------------------------- /django_mongodb_backend/queryset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/queryset.py -------------------------------------------------------------------------------- /django_mongodb_backend/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/routers.py -------------------------------------------------------------------------------- /django_mongodb_backend/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/schema.py -------------------------------------------------------------------------------- /django_mongodb_backend/templates/mongodb/widgets/split_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/templates/mongodb/widgets/split_array.html -------------------------------------------------------------------------------- /django_mongodb_backend/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/test.py -------------------------------------------------------------------------------- /django_mongodb_backend/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/transaction.py -------------------------------------------------------------------------------- /django_mongodb_backend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/utils.py -------------------------------------------------------------------------------- /django_mongodb_backend/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/validation.py -------------------------------------------------------------------------------- /django_mongodb_backend/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/django_mongodb_backend/validators.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_ext/djangodocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/_ext/djangodocs.py -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/howto/contrib-apps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/howto/contrib-apps.rst -------------------------------------------------------------------------------- /docs/howto/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/howto/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/internals/bugs-and-features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/internals/bugs-and-features.rst -------------------------------------------------------------------------------- /docs/internals/contributing/coding-style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/internals/contributing/coding-style.rst -------------------------------------------------------------------------------- /docs/internals/contributing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/internals/contributing/index.rst -------------------------------------------------------------------------------- /docs/internals/contributing/unit-tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/internals/contributing/unit-tests.rst -------------------------------------------------------------------------------- /docs/internals/contributing/writing-documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/internals/contributing/writing-documentation.rst -------------------------------------------------------------------------------- /docs/internals/deprecation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/internals/deprecation.rst -------------------------------------------------------------------------------- /docs/internals/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/internals/index.rst -------------------------------------------------------------------------------- /docs/internals/release-process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/internals/release-process.rst -------------------------------------------------------------------------------- /docs/internals/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/internals/security.rst -------------------------------------------------------------------------------- /docs/intro/configure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/intro/configure.rst -------------------------------------------------------------------------------- /docs/intro/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/intro/index.rst -------------------------------------------------------------------------------- /docs/intro/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/intro/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/ref/contrib/gis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/contrib/gis.rst -------------------------------------------------------------------------------- /docs/ref/contrib/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/contrib/index.rst -------------------------------------------------------------------------------- /docs/ref/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/database.rst -------------------------------------------------------------------------------- /docs/ref/django-admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/django-admin.rst -------------------------------------------------------------------------------- /docs/ref/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/forms.rst -------------------------------------------------------------------------------- /docs/ref/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/index.rst -------------------------------------------------------------------------------- /docs/ref/models/fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/models/fields.rst -------------------------------------------------------------------------------- /docs/ref/models/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/models/index.rst -------------------------------------------------------------------------------- /docs/ref/models/indexes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/models/indexes.rst -------------------------------------------------------------------------------- /docs/ref/models/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/models/models.rst -------------------------------------------------------------------------------- /docs/ref/models/querysets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/models/querysets.rst -------------------------------------------------------------------------------- /docs/ref/models/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/models/search.rst -------------------------------------------------------------------------------- /docs/ref/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/ref/utils.rst -------------------------------------------------------------------------------- /docs/releases/5.0.x.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/releases/5.0.x.rst -------------------------------------------------------------------------------- /docs/releases/5.1.x.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/releases/5.1.x.rst -------------------------------------------------------------------------------- /docs/releases/5.2.x.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/releases/5.2.x.rst -------------------------------------------------------------------------------- /docs/releases/6.0.x.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/releases/6.0.x.rst -------------------------------------------------------------------------------- /docs/releases/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/releases/index.rst -------------------------------------------------------------------------------- /docs/topics/embedded-models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/topics/embedded-models.rst -------------------------------------------------------------------------------- /docs/topics/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/topics/index.rst -------------------------------------------------------------------------------- /docs/topics/known-issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/topics/known-issues.rst -------------------------------------------------------------------------------- /docs/topics/transactions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/docs/topics/transactions.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/requirements.txt -------------------------------------------------------------------------------- /sbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/sbom.json -------------------------------------------------------------------------------- /tests/aggregation_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/aggregation_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/aggregation_/models.py -------------------------------------------------------------------------------- /tests/aggregation_/test_stringagg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/aggregation_/test_stringagg.py -------------------------------------------------------------------------------- /tests/aggregation_/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/aggregation_/tests.py -------------------------------------------------------------------------------- /tests/atlas_search_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atlas_search_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/atlas_search_/models.py -------------------------------------------------------------------------------- /tests/atlas_search_/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/atlas_search_/test_search.py -------------------------------------------------------------------------------- /tests/backend_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backend_/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/backend_/test_base.py -------------------------------------------------------------------------------- /tests/backend_/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/backend_/test_features.py -------------------------------------------------------------------------------- /tests/basic_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/basic_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/basic_/models.py -------------------------------------------------------------------------------- /tests/basic_/test_escaping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/basic_/test_escaping.py -------------------------------------------------------------------------------- /tests/db_functions_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/db_functions_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/db_functions_/models.py -------------------------------------------------------------------------------- /tests/db_functions_/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/db_functions_/test_datetime.py -------------------------------------------------------------------------------- /tests/db_functions_/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/db_functions_/tests.py -------------------------------------------------------------------------------- /tests/dbshell_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dbshell_/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/dbshell_/tests.py -------------------------------------------------------------------------------- /tests/expressions_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/expressions_/test_combinable_search_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/expressions_/test_combinable_search_expression.py -------------------------------------------------------------------------------- /tests/expressions_/test_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/expressions_/test_value.py -------------------------------------------------------------------------------- /tests/forms_tests_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forms_tests_/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/forms_tests_/test_array.py -------------------------------------------------------------------------------- /tests/forms_tests_/test_objectidfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/forms_tests_/test_objectidfield.py -------------------------------------------------------------------------------- /tests/gis_tests_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gis_tests_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/gis_tests_/models.py -------------------------------------------------------------------------------- /tests/gis_tests_/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/gis_tests_/tests.py -------------------------------------------------------------------------------- /tests/indexes_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/indexes_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/indexes_/models.py -------------------------------------------------------------------------------- /tests/indexes_/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/indexes_/test_base.py -------------------------------------------------------------------------------- /tests/indexes_/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/indexes_/test_checks.py -------------------------------------------------------------------------------- /tests/indexes_/test_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/indexes_/test_condition.py -------------------------------------------------------------------------------- /tests/indexes_/test_search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/indexes_/test_search_indexes.py -------------------------------------------------------------------------------- /tests/invalid_models_tests_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/invalid_models_tests_/test_autofield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/invalid_models_tests_/test_autofield.py -------------------------------------------------------------------------------- /tests/lookup_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lookup_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/lookup_/models.py -------------------------------------------------------------------------------- /tests/lookup_/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/lookup_/tests.py -------------------------------------------------------------------------------- /tests/model_fields_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_fields_/array_default_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/array_default_migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/model_fields_/array_default_migrations/0002_integerarraymodel_field_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/array_default_migrations/0002_integerarraymodel_field_2.py -------------------------------------------------------------------------------- /tests/model_fields_/array_default_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_fields_/array_index_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/array_index_migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/model_fields_/array_index_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_fields_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/models.py -------------------------------------------------------------------------------- /tests/model_fields_/test_arrayfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/test_arrayfield.py -------------------------------------------------------------------------------- /tests/model_fields_/test_autofield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/test_autofield.py -------------------------------------------------------------------------------- /tests/model_fields_/test_durationfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/test_durationfield.py -------------------------------------------------------------------------------- /tests/model_fields_/test_embedded_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/test_embedded_model.py -------------------------------------------------------------------------------- /tests/model_fields_/test_embedded_model_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/test_embedded_model_array.py -------------------------------------------------------------------------------- /tests/model_fields_/test_integerfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/test_integerfield.py -------------------------------------------------------------------------------- /tests/model_fields_/test_objectidfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/test_objectidfield.py -------------------------------------------------------------------------------- /tests/model_fields_/test_polymorphic_embedded_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/test_polymorphic_embedded_model.py -------------------------------------------------------------------------------- /tests/model_fields_/test_polymorphic_embedded_model_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/test_polymorphic_embedded_model_array.py -------------------------------------------------------------------------------- /tests/model_fields_/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_fields_/utils.py -------------------------------------------------------------------------------- /tests/model_forms_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model_forms_/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_forms_/forms.py -------------------------------------------------------------------------------- /tests/model_forms_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_forms_/models.py -------------------------------------------------------------------------------- /tests/model_forms_/test_embedded_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_forms_/test_embedded_model.py -------------------------------------------------------------------------------- /tests/model_forms_/test_embedded_model_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/model_forms_/test_embedded_model_array.py -------------------------------------------------------------------------------- /tests/models_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/models_/models.py -------------------------------------------------------------------------------- /tests/models_/test_embedded_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/models_/test_embedded_model.py -------------------------------------------------------------------------------- /tests/models_/test_routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/models_/test_routers.py -------------------------------------------------------------------------------- /tests/queries_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/queries_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/queries_/models.py -------------------------------------------------------------------------------- /tests/queries_/test_explain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/queries_/test_explain.py -------------------------------------------------------------------------------- /tests/queries_/test_mql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/queries_/test_mql.py -------------------------------------------------------------------------------- /tests/queries_/test_objectid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/queries_/test_objectid.py -------------------------------------------------------------------------------- /tests/queries_/test_qs_combinators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/queries_/test_qs_combinators.py -------------------------------------------------------------------------------- /tests/raw_query_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/raw_query_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/raw_query_/models.py -------------------------------------------------------------------------------- /tests/raw_query_/test_raw_aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/raw_query_/test_raw_aggregate.py -------------------------------------------------------------------------------- /tests/schema_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/schema_/models.py -------------------------------------------------------------------------------- /tests/schema_/test_embedded_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/schema_/test_embedded_model.py -------------------------------------------------------------------------------- /tests/transaction_hooks_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transaction_hooks_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/transaction_hooks_/models.py -------------------------------------------------------------------------------- /tests/transaction_hooks_/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/transaction_hooks_/tests.py -------------------------------------------------------------------------------- /tests/transactions_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transactions_/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/transactions_/models.py -------------------------------------------------------------------------------- /tests/transactions_/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/transactions_/tests.py -------------------------------------------------------------------------------- /tests/validators_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/validators_/test_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/django-mongodb-backend/HEAD/tests/validators_/test_length.py --------------------------------------------------------------------------------