Skip to content

Commit 867fed1

Browse files
Add alias for index page (#1029)
1 parent d56b7ae commit 867fed1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/ROOT/pages/indexes/search-performance-indexes/using-indexes.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
:description: Information about how search-performance indexes impact query performance in Neo4j.
22
:test-setup-dump: https://github.com/neo4j-graph-examples/openstreetmap/raw/main/data/openstreetmap-50.dump
33
include::https://raw.githubusercontent.com/neo4j-graphacademy/courses/main/asciidoc/courses/cypher-indexes-constraints/ad.adoc[]
4+
:page-aliases: query-tuning/indexes.adoc
45

56
= The impact of indexes on query performance
67

@@ -260,7 +261,7 @@ MERGE (:PointOfInterest {name:varName.name})
260261
[source,cypher]
261262
----
262263
WITH {name: 'William Shakespeare'} AS varName
263-
MERGE (ws:PointOfInterest {name: toString(varName.name)})
264+
MERGE (:PointOfInterest {name: toString(varName.name)})
264265
----
265266

266267
For information about how to ensure the use of text indexes when predicates may contain `null` values, see xref:indexes/search-performance-indexes/using-indexes/indexes-and-null[Indexes and `null` values].

0 commit comments

Comments
 (0)