From 8b15769b22f6885548687bf982aba1787f1d4d47 Mon Sep 17 00:00:00 2001 From: matea16 Date: Mon, 22 Sep 2025 10:54:42 +0200 Subject: [PATCH] fix query typo --- pages/fundamentals/indexes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/fundamentals/indexes.mdx b/pages/fundamentals/indexes.mdx index 99c07973f..98667c8e8 100644 --- a/pages/fundamentals/indexes.mdx +++ b/pages/fundamentals/indexes.mdx @@ -204,7 +204,7 @@ Instead, you should use a `WHERE` clause to specify just the indexed property, which is the only scenario in which a nested index can be used: ```cypher -MATCH (proj:Project) WHERE x.delivery.status.due_date = date('2025-06-04') RETURN *; +MATCH (proj:Project) WHERE proj.delivery.status.due_date = date('2025-06-04') RETURN *; ``` ```