diff --git a/content/en/docs/refguide/modeling/domain-model/oql/_index.md b/content/en/docs/refguide/modeling/domain-model/oql/_index.md index 4703c940caf..47a0ab82755 100644 --- a/content/en/docs/refguide/modeling/domain-model/oql/_index.md +++ b/content/en/docs/refguide/modeling/domain-model/oql/_index.md @@ -68,7 +68,7 @@ Here is a list of all OQL reserved words: `REPLACE`, `RIGHT` -`SECOND`, `SELECT`, `SET`, `SOURCE`, `STRING`, `SUM` +`SECOND`, `SELECT`, `SET`, `SOURCE`, `STRING`, `STRING_AGG`, `SUM` `TARGET`, `THEN`, `TRUE` diff --git a/content/en/docs/refguide/modeling/domain-model/oql/oql-clauses.md b/content/en/docs/refguide/modeling/domain-model/oql/oql-clauses.md index 82554d2ff50..1c3aef67b06 100644 --- a/content/en/docs/refguide/modeling/domain-model/oql/oql-clauses.md +++ b/content/en/docs/refguide/modeling/domain-model/oql/oql-clauses.md @@ -670,7 +670,7 @@ GROUP BY ``` {{% alert color="info" %}} -The `GROUP BY` clause is usually used in combination with [aggregations](/refguide/oql-expressions/#aggregates): `AVG`, `COUNT`, `MAX`, `MIN`, `SUM`. +The `GROUP BY` clause is usually used in combination with [aggregations](/refguide/oql-expressions/#aggregates): `AVG`, `COUNT`, `MAX`, `MIN`, `STRING_AGG`, `SUM`. {{% /alert %}} ### Using `GROUP BY` diff --git a/content/en/docs/refguide/modeling/domain-model/oql/oql-expressions.md b/content/en/docs/refguide/modeling/domain-model/oql/oql-expressions.md index dd5aa80c474..12abcb24926 100644 --- a/content/en/docs/refguide/modeling/domain-model/oql/oql-expressions.md +++ b/content/en/docs/refguide/modeling/domain-model/oql/oql-expressions.md @@ -78,9 +78,7 @@ STRING_AGG ( attribute_path, separator ) `separator` is any expression of type `STRING`. -{{% alert color="info" %}} -This aggregate function is only supported in Java actions. -{{% /alert %}} +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. ### Examples diff --git a/content/en/docs/releasenotes/studio-pro/11/11.2.md b/content/en/docs/releasenotes/studio-pro/11/11.2.md index 4b3977d8682..7a241e593b2 100644 --- a/content/en/docs/releasenotes/studio-pro/11/11.2.md +++ b/content/en/docs/releasenotes/studio-pro/11/11.2.md @@ -17,6 +17,7 @@ weight: 98 * 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. * The **Changes** pane is now automatically updated if files on disk are changed outside Studio Pro. * 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/). +* We added support for STRING_AGG aggregate function in View Entities and Datasets. ### Improvements