Update link type in example query (#42)
Browse files
README.md
CHANGED
@@ -80,7 +80,7 @@ We have offered some queries that can be used to quickly explore our language da
|
|
80 |
|
81 |
```cypher
|
82 |
MATCH (term:Term{name:'nämlich'})
|
83 |
-
CALL apoc.path.expand(term, "
|
84 |
YIELD path
|
85 |
RETURN path, length(path) AS hops
|
86 |
ORDER BY hops;
|
@@ -92,7 +92,7 @@ We have offered some queries that can be used to quickly explore our language da
|
|
92 |
|
93 |
```cypher
|
94 |
MATCH (term:Term{name:'die Reise'})
|
95 |
-
CALL apoc.path.expand(term, "
|
96 |
YIELD path
|
97 |
RETURN path, length(path) AS hops
|
98 |
ORDER BY hops;
|
|
|
80 |
|
81 |
```cypher
|
82 |
MATCH (term:Term{name:'nämlich'})
|
83 |
+
CALL apoc.path.expand(term, "LINK", null, 1, -1)
|
84 |
YIELD path
|
85 |
RETURN path, length(path) AS hops
|
86 |
ORDER BY hops;
|
|
|
92 |
|
93 |
```cypher
|
94 |
MATCH (term:Term{name:'die Reise'})
|
95 |
+
CALL apoc.path.expand(term, "LINK", null, 1, -1)
|
96 |
YIELD path
|
97 |
RETURN path, length(path) AS hops
|
98 |
ORDER BY hops;
|