diff --git a/cypher/algorithms.md b/cypher/algorithms.md index f2327ee..a649202 100644 --- a/cypher/algorithms.md +++ b/cypher/algorithms.md @@ -1,3 +1,4 @@ +--- title: "Algorithms" nav_order: 19 description: > diff --git a/cypher/call.md b/cypher/call.md index 53e3a25..d8c3730 100644 --- a/cypher/call.md +++ b/cypher/call.md @@ -1,3 +1,4 @@ +--- title: "CALL clause" nav_order: 16 description: > diff --git a/cypher/create.md b/cypher/create.md index d14da5b..2c7359b 100644 --- a/cypher/create.md +++ b/cypher/create.md @@ -1,3 +1,4 @@ +--- title: "CREATE clause" nav_order: 8 description: > diff --git a/cypher/delete.md b/cypher/delete.md index bb923cd..d19f383 100644 --- a/cypher/delete.md +++ b/cypher/delete.md @@ -1,3 +1,4 @@ +--- title: "DELETE clause" nav_order: 9 description: > diff --git a/cypher/foreach.md b/cypher/foreach.md index 78839f7..b31e617 100644 --- a/cypher/foreach.md +++ b/cypher/foreach.md @@ -1,3 +1,4 @@ +--- title: "FOREACH clause" nav_order: 15 description: > diff --git a/cypher/functions.md b/cypher/functions.md index 9850cf4..1da9b0f 100644 --- a/cypher/functions.md +++ b/cypher/functions.md @@ -1,3 +1,4 @@ +--- title: "Functions" nav_order: 17 description: > diff --git a/cypher/index.md b/cypher/index.md index 2353d68..1e214ba 100644 --- a/cypher/index.md +++ b/cypher/index.md @@ -1,3 +1,4 @@ +--- title: "Index" nav_order: 20 description: > diff --git a/cypher/limit.md b/cypher/limit.md index 068331b..a4b3578 100644 --- a/cypher/limit.md +++ b/cypher/limit.md @@ -1,3 +1,4 @@ +--- title: "LIMIT clause" nav_order: 7 description: > diff --git a/cypher/match.md b/cypher/match.md index db142a3..0f8752a 100644 --- a/cypher/match.md +++ b/cypher/match.md @@ -1,3 +1,4 @@ +--- title: "MATCH clause" nav_order: 1 description: > @@ -296,7 +297,7 @@ Result: * An array of the relationship's weights along the path can be retrieved with `[r in relationships(path) | r.weight]` where weight is the name of the weight property Behavior in presence on multiple-edges: - +--- * multi-edges are two or more edges connecting the same pair of vertices (possibly with different weights and costs). * All matching edges are considered. Paths with identical vertices and different edges are different paths. The following are 3 different paths ('n1', 'n2', and 'n3' are nodes; 'e1', 'e2', 'e3', and 'e4' are edges): (n1)-[e1]-(n2)-[e2]-(n3), (n1)-[e1]-(n2)-[e3]-(n3), (n1)-[e4]-(n2)-[e3]-(n3) diff --git a/cypher/merge.md b/cypher/merge.md index 0dc1725..3584e5b 100644 --- a/cypher/merge.md +++ b/cypher/merge.md @@ -1,3 +1,4 @@ +--- title: "MERGE clause" nav_order: 11 description: > diff --git a/cypher/optional_match.md b/cypher/optional_match.md index baed482..7e7543f 100644 --- a/cypher/optional_match.md +++ b/cypher/optional_match.md @@ -1,3 +1,4 @@ +--- title: "OPTIONAL MATCH clause" nav_order: 2 description: > diff --git a/cypher/order_by.md b/cypher/order_by.md index 37a13e4..6dd2219 100644 --- a/cypher/order_by.md +++ b/cypher/order_by.md @@ -1,3 +1,4 @@ +--- title: "ORDER BY clause" nav_order: 5 description: > diff --git a/cypher/procedures.md b/cypher/procedures.md index 7e3e1ac..46f69ae 100644 --- a/cypher/procedures.md +++ b/cypher/procedures.md @@ -1,3 +1,4 @@ +--- title: "Procedures" nav_order: 18 description: > diff --git a/cypher/return.md b/cypher/return.md index d2fcb1d..68e9749 100644 --- a/cypher/return.md +++ b/cypher/return.md @@ -1,3 +1,4 @@ +--- title: "RETURN clause" nav_order: 4 description: > diff --git a/cypher/set.md b/cypher/set.md index 2d9e3b0..f9c8532 100644 --- a/cypher/set.md +++ b/cypher/set.md @@ -1,3 +1,4 @@ +--- title: "SET clause" nav_order: 10 description: > diff --git a/cypher/skip.md b/cypher/skip.md index 43c49bb..0b024c9 100644 --- a/cypher/skip.md +++ b/cypher/skip.md @@ -1,3 +1,4 @@ +--- title: "SKIP clause" nav_order: 6 description: > diff --git a/cypher/union.md b/cypher/union.md index 9d8009a..ac4d4a2 100644 --- a/cypher/union.md +++ b/cypher/union.md @@ -1,3 +1,4 @@ +--- title: "UNION clause" nav_order: 13 description: > diff --git a/cypher/unwind.md b/cypher/unwind.md index 636eec2..6675cf7 100644 --- a/cypher/unwind.md +++ b/cypher/unwind.md @@ -1,3 +1,4 @@ +--- title: "UNWIND clause" nav_order: 14 description: > diff --git a/cypher/where.md b/cypher/where.md index 11a8b9c..9811b78 100644 --- a/cypher/where.md +++ b/cypher/where.md @@ -1,3 +1,4 @@ +--- title: "WHERE clause" nav_order: 3 description: > diff --git a/cypher/with.md b/cypher/with.md index 1dc2c3c..9f3c752 100644 --- a/cypher/with.md +++ b/cypher/with.md @@ -1,3 +1,4 @@ +--- title: "WITH clause" nav_order: 12 description: >