Skip to content

Commit 9a881c9

Browse files
authored
Merge pull request #10173 from eng-myousif/dux/487-STRING_AGG-support-in-view-entities
Dux-487 string agg support in view entities
2 parents 6b0e0ca + 0b68fa9 commit 9a881c9

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

content/en/docs/refguide/modeling/domain-model/oql/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Here is a list of all OQL reserved words:
6868

6969
`REPLACE`, `RIGHT`
7070

71-
`SECOND`, `SELECT`, `SET`, `SOURCE`, `STRING`, `SUM`
71+
`SECOND`, `SELECT`, `SET`, `SOURCE`, `STRING`, `STRING_AGG`, `SUM`
7272

7373
`TARGET`, `THEN`, `TRUE`
7474

content/en/docs/refguide/modeling/domain-model/oql/oql-clauses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ GROUP BY
670670
```
671671

672672
{{% alert color="info" %}}
673-
The `GROUP BY` clause is usually used in combination with [aggregations](/refguide/oql-expressions/#aggregates): `AVG`, `COUNT`, `MAX`, `MIN`, `SUM`.
673+
The `GROUP BY` clause is usually used in combination with [aggregations](/refguide/oql-expressions/#aggregates): `AVG`, `COUNT`, `MAX`, `MIN`, `STRING_AGG`, `SUM`.
674674
{{% /alert %}}
675675

676676
### Using `GROUP BY`

content/en/docs/refguide/modeling/domain-model/oql/oql-expressions.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,7 @@ STRING_AGG ( attribute_path, separator )
7878

7979
`separator` is any expression of type `STRING`.
8080

81-
{{% alert color="info" %}}
82-
This aggregate function is only supported in Java actions.
83-
{{% /alert %}}
81+
This aggregate function is supported in View Entities and Datasets starting from Mendix 11.2.0, whereas previously it was only available in Java actions.
8482

8583
### Examples
8684

content/en/docs/releasenotes/studio-pro/11/11.2.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ weight: 98
1717
* You can now upload a PDF document in Maia for Workflows. This allows you to generate workflows based on PDF documents in addition to text and image inputs.
1818
* The **Changes** pane is now automatically updated if files on disk are changed outside Studio Pro.
1919
* We added support for saving files using the new Client API by calling `saveFile` from `mx-api/data`. For more information, see the [Client API documentation](/apidocs-mxsdk/apidocs/client-api/).
20+
* We added support for STRING_AGG aggregate function in View Entities and Datasets.
2021

2122
### Improvements
2223

0 commit comments

Comments
 (0)