From fca5827c582c821d2ec1f7eeb4d6f4c0ab3daa79 Mon Sep 17 00:00:00 2001 From: Simon Prickett Date: Mon, 21 Nov 2022 16:00:27 +0000 Subject: [PATCH] Fixes bad link to search docs closes #495. --- .../node/node-crash-course/redisearch/index-redisearch.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/develop/node/node-crash-course/redisearch/index-redisearch.mdx b/docs/develop/node/node-crash-course/redisearch/index-redisearch.mdx index 9689d78e3d..3f6fd861fc 100644 --- a/docs/develop/node/node-crash-course/redisearch/index-redisearch.mdx +++ b/docs/develop/node/node-crash-course/redisearch/index-redisearch.mdx @@ -112,7 +112,7 @@ const searchResults = await redis.performSearch( ); ``` -with one containing the correct RediSearch query to return users whose "lastSeenAt" field is set to the value of locationId. You'll need to use the "numeric range" syntax for this, as the "lastSeenAt" field was indexed as a number. Be sure to check out the [Query Syntax documentation](https://oss.redis.com/redisearch/Query_Syntax/) for RediSearch to get help with this. +with one containing the correct RediSearch query to return users whose "lastSeenAt" field is set to the value of locationId. You'll need to use the "numeric range" syntax for this, as the "lastSeenAt" field was indexed as a number. Be sure to check out the [Query Syntax documentation](https://redis.io/docs/stack/search/reference/query_syntax/) for RediSearch to get help with this. To try your code, ensure that the API Server component is running: