Skip to content

Merge 5.3 into 5.x #3356

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions docs/feature-compatibility.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ availability in the {+odm-short+}.
The following sections contain tables that describe whether individual
features are available in the {+odm-short+}.

.. tip:: SQL Concepts in MongoDB

To learn about how MongoDB represents SQL terminology, concepts, and
functionality, see the :manual:`SQL to MongoDB Mapping Chart
</reference/sql-comparison/>`.

Database Features
-----------------

Expand Down Expand Up @@ -117,10 +123,18 @@ The following Eloquent methods are not supported in the {+odm-short+}:
- *Unsupported*

* - Joins
- *Unsupported*
- Use the ``$lookup`` aggregation stage. To learn more, see the
:manual:`$lookup reference
</reference/operator/aggregation/lookup/>` in the
{+server-docs-name+}. {+odm-long+} provides the
:ref:`laravel-aggregation-builder` to perform aggregations.

* - Unions
- *Unsupported*
- Use the ``$unionWith`` aggregation stage. To learn more, see the
:manual:`$unionWith reference
</reference/operator/aggregation/unionWith/>` in the
{+server-docs-name+}. {+odm-long+} provides the
:ref:`laravel-aggregation-builder` to perform aggregations.

* - `Basic Where Clauses <https://laravel.com/docs/{+laravel-docs-version+}/queries#basic-where-clauses>`__
- ✓
Expand All @@ -144,7 +158,11 @@ The following Eloquent methods are not supported in the {+odm-short+}:
- *Unsupported*

* - Grouping
- Partially supported. Use :ref:`Aggregations <laravel-query-builder-aggregations>`.
- Use the ``$group`` aggregation stage. To learn more, see the
:manual:`$group reference
</reference/operator/aggregation/group/>` in the
{+server-docs-name+}. {+odm-long+} provides the
:ref:`laravel-aggregation-builder` to perform aggregations.

* - Limit and Offset
- ✓
Expand Down
Loading