From 7ec701860eed01da4d11a4ac945293daf1a2fd1e Mon Sep 17 00:00:00 2001 From: Pavel Tiunov Date: Fri, 11 Oct 2019 11:10:07 -0700 Subject: [PATCH] docs: `ungrouped` query --- docs/Cube.js-Frontend/Query-Format.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Cube.js-Frontend/Query-Format.md b/docs/Cube.js-Frontend/Query-Format.md index 5038c668ad93c..17defba491b67 100644 --- a/docs/Cube.js-Frontend/Query-Format.md +++ b/docs/Cube.js-Frontend/Query-Format.md @@ -32,7 +32,7 @@ Query has the following properties: - `renewQuery`: If `renewQuery` is set to `true`, query will always refresh cache and return the latest data from the database. The default value is `false`. - `ungrouped`: If `ungrouped` is set to `true` no `GROUP BY` statement will be added to the query and raw results after filtering and joining will be returned. By default `ungrouped` query requires to pass primary key as a dimension of every cube involved in query for security purpose. -To disable this behavior please see [allowUngroupedWithoutPrimaryKey](@cubejs-backend-server-core#allow-ungrouped-without-primary-key) server option. +To disable this behavior please see [allowUngroupedWithoutPrimaryKey](@cubejs-backend-server-core#options-reference-allow-ungrouped-without-primary-key) server option. ```js {