From 3149b33d917db45fb59325eee928c3846d101a4e Mon Sep 17 00:00:00 2001 From: David Dougherty Date: Mon, 24 Jun 2024 13:31:24 -0700 Subject: [PATCH] DEV: add link from FT.AGGREGATE page to APPLY expressions ref. (#357) --- content/commands/ft.aggregate/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/commands/ft.aggregate/index.md b/content/commands/ft.aggregate/index.md index c0169c173..1de8cdbfd 100644 --- a/content/commands/ft.aggregate/index.md +++ b/content/commands/ft.aggregate/index.md @@ -274,6 +274,8 @@ applies a 1-to-1 transformation on one or more properties and either stores the `expr` is an expression that can be used to perform arithmetic operations on numeric properties, or functions that can be applied on properties depending on their types (see below), or any combination thereof. For example, `APPLY "sqrt(@foo)/log(@bar) + 5" AS baz` evaluates this expression dynamically for each record in the pipeline and store the result as a new property called `baz`, which can be referenced by further `APPLY`/`SORTBY`/`GROUPBY`/`REDUCE` operations down the pipeline. + +See [APPLY expressions]({{< baseurl >}}/develop/interact/search-and-query/advanced-concepts/aggregations/#apply-expressions) for details.