QubitPi commited on
Commit
36c0ea3
1 Parent(s): 93ee012

Update link type in example query (#42)

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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, "RELATED|DEFINITION", null, 1, -1)
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, "RELATED|DEFINITION", null, 1, -1)
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;