From f2c2451b7d3cf3b4f7771206874cae61929da2c0 Mon Sep 17 00:00:00 2001 From: Christoph Strobl Date: Thu, 6 Oct 2022 13:52:00 +0200 Subject: [PATCH] Add hint how to use $search aggregation operator to reference documentation. Closes: #4183 --- src/main/asciidoc/reference/aggregation-framework.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/reference/aggregation-framework.adoc b/src/main/asciidoc/reference/aggregation-framework.adoc index eece93524..ae1b0b229 100644 --- a/src/main/asciidoc/reference/aggregation-framework.adoc +++ b/src/main/asciidoc/reference/aggregation-framework.adoc @@ -128,7 +128,7 @@ Note that the aggregation operations not listed here are currently not supported [TIP] ==== -Unsupported aggregation operations/operators can be provided by implementing either `AggregationOperation` or `AggregationExpression`. +Unsupported aggregation operations/operators (like https://www.mongodb.com/docs/atlas/atlas-search/query-syntax/[$search] for MongoDB Atlas) can be provided by implementing either `AggregationOperation` or `AggregationExpression`. `Aggregation.stage` is a shortcut for registering a pipeline stage by providing its JSON or `Bson` representation. [source,java]