You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Results are displayed as a table with three columns:
@@ -394,6 +413,7 @@ SEARCH <collection> SIMILAR TO '<query>' LIMIT <n> USING HYBRID GROUP BY <field>
394
413
-**`GROUP_SIZE <m>`** — maximum number of points per group (default: **3**).
395
414
-**`GROUP BY <field>`** — the payload field whose values define the groups. **Must be a string (keyword) or number (integer) field** — this is enforced by Qdrant. Dot-notation is supported (e.g. `meta.author`). Array-valued fields are allowed: a point with multiple values for the field can appear in multiple groups. The field should be indexed as `keyword` or `integer` for best performance (see [CREATE INDEX](collections.md)).
396
415
-`WHERE` filters, `USING HYBRID`, and `USING MODEL` are all compatible with GROUP BY.
416
+
- ⚠️ **Incompatibility:**`GROUP BY` is not compatible with `OFFSET` or `RERANK`. Use cursors (not currently supported in QQL) for paginating grouped results in Qdrant.
397
417
-**`GROUP BY` and `RERANK` cannot be combined** in the same statement — this raises a syntax error.
0 commit comments