Skip to content

Commit

Permalink
Fix broken links (#865)
Browse files Browse the repository at this point in the history
  • Loading branch information
JPryce-Aklundh authored Jan 24, 2024
1 parent 4c06d09 commit e448ad7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions modules/ROOT/content-nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,6 @@
* Appendix
** xref:styleguide.adoc[]
** xref:appendix/tutorials/index.adoc[]
*** xref:appendix/tutorials/basic-query-tuning.adoc[]
*** xref:appendix/tutorials/advanced-query-tuning.adoc[]
*** xref:appendix/tutorials/shortestpath-planning.adoc[]
2 changes: 1 addition & 1 deletion modules/ROOT/pages/clauses/order-by.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -240,4 +240,4 @@ This rule is to make sure that `ORDER BY` does not change the results, only the

The performance of Cypher queries using `ORDER BY` on node properties can be influenced by the existence and use of an index for finding the nodes.
If the index can provide the nodes in the order requested in the query, Cypher can avoid the use of an expensive `Sort` operation.
Read more about this capability in xref::appendix/tutorials/advanced-query-tuning.adoc#advanced-query-tuning-example-index-backed-order-by[Index-backed ORDER BY].
Read more about this capability in xref::indexes/search-performance-indexes/using-indexes.adoc#range-index-backed-order-by[Range index-backed ORDER BY].
2 changes: 1 addition & 1 deletion modules/ROOT/pages/clauses/use.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Where `<graph>` refers to the name or alias of a database in the DBMS.
[[query-use-syntax-composite]]
=== Composite database syntax

When running queries against a link:{neo4j-docs-base-uri}/operations-manual/{page-version}/composite-databases[composite database], the `USE` clause can also appear as the first clause of:
When running queries against a link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/composite-databases/concepts/[composite database], the `USE` clause can also appear as the first clause of:

* Union parts:
+
Expand Down
1 change: 0 additions & 1 deletion modules/ROOT/pages/patterns/concepts.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,6 @@ RETURN [n in nodes(p) | n.name] AS stops
|===

On a large, highly connected graph, this can be very time consuming.
See the section on xref::appendix/tutorials/shortestpath-planning.adoc[shortest path planning] for more information.

[[shortest-path-all-shortest-paths]]
=== All shortest paths
Expand Down

0 comments on commit e448ad7

Please sign in to comment.