File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
source/supported-unsupported Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,28 @@ column for details.
60
60
61
61
See :ref:`query-atlas` for more information.
62
62
63
+ * - :pipeline:`$group`
64
+ - Groups input documents by the specified ``_id`` expression and
65
+ for each distinct grouping, outputs a document. {+adl+} doesn't
66
+ support empty string keys for the accumulator fields.
67
+
68
+ .. example::
69
+
70
+ The following is **not** supported:
71
+
72
+ .. code-block:: json
73
+ :copyable: false
74
+ :emphasize-lines: 4
75
+
76
+ {
77
+ "$group" : {
78
+ "_id" : "$representationType",
79
+ "" : {
80
+ "$sum" : NumberInt(1)
81
+ }
82
+ }
83
+ }
84
+
63
85
* - :pipeline:`$lookup`
64
86
- Performs a left outer join to a collection in the same database.
65
87
{+adl+} provides syntax for joining collections from different
You can’t perform that action at this time.
0 commit comments