From 084cdd2133345aeab62a48596ce555666ff957c2 Mon Sep 17 00:00:00 2001 From: Obinna Ekwuno Date: Wed, 13 Mar 2024 16:05:41 +0000 Subject: [PATCH] Update operators.mdx (#405) --- versioned_docs/version-1.x/surrealql/operators.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/versioned_docs/version-1.x/surrealql/operators.mdx b/versioned_docs/version-1.x/surrealql/operators.mdx index 6ce30e190..cb922c8b2 100644 --- a/versioned_docs/version-1.x/surrealql/operators.mdx +++ b/versioned_docs/version-1.x/surrealql/operators.mdx @@ -166,7 +166,7 @@ A variety of operators in SurrealQL allow for complex manipulation of data, and Checks whether the terms are found in a full-text indexed field - <|4|> or <|3,HAMMING| > Since 1.3.0 + <|4|> or <|3,HAMMING| > Since 1.3.0 Performs a K-Nearest Neighbors (KNN) search to find a specified number of records closest to a given data point, optionally using a defined distance metric. Supports customizing the number of results and choice of distance calculation method. @@ -784,7 +784,7 @@ ORDER BY score DESC; ] ``` -## `#KNN` {#KNN} +## `#KNN` Since 1.3.0 Performs a K-Nearest Neighbors (KNN) search to find a specified number of records closest to a given data point, optionally using a defined distance metric. Supports customizing the number of results and choice of distance calculation method. ```surql @@ -794,4 +794,4 @@ SELECT id, vector::distance::euclidean(point, [2,3,4,5]) AS dist FROM pts WHERE SELECT id FROM pts WHERE point <|2|> [2,3,4,5] EXPLAIN; ``` -

\ No newline at end of file +