You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/advanced-algorithms/available-algorithms/node.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ The procedure checks if the given node has a relationship of a specific type.
99
99
-`subgraph: Graph` (**OPTIONAL**) ➡ A specific subgraph, which is an [object of type Graph](/advanced-algorithms/run-algorithms#run-procedures-on-subgraph) returned by the `project()` function, on which the algorithm is run.
100
100
If subgraph is not specified, the algorithm is computed on the entire graph by default.
101
101
102
-
-`node: Node` ➡ The target node for which the existance of a relationship type is verified.
102
+
-`node: Node` ➡ The target node for which the existence of a relationship type is verified.
103
103
-`pattern: List[string] (optional)` ➡ A list of relationship types that need to be checked. If the input parameter is empty, procedure will check all types of relationships.
104
104
105
105
If < is added in front of the relationship type, only relationships coming
@@ -123,7 +123,7 @@ CREATE (a)-[f:FRIENDS]->(b);
123
123
MATCH (a:Person {name: "Joey"})
124
124
```
125
125
126
-
To check the existance of a relationship type `FRIENDS` coming to the node `a`,
126
+
To check the existence of a relationship type `FRIENDS` coming to the node `a`,
127
127
run the following query:
128
128
129
129
```
@@ -159,7 +159,7 @@ provided below:
159
159
-`subgraph: Graph` (**OPTIONAL**) ➡ A specific subgraph, which is an [object of type Graph](/advanced-algorithms/run-algorithms#run-procedures-on-subgraph) returned by the `project()` function, on which the algorithm is run.
160
160
If subgraph is not specified, the algorithm is computed on the entire graph by default.
161
161
162
-
-`node: Node` ➡ The target node for which the existance of relationship types is verified.
162
+
-`node: Node` ➡ The target node for which the existence of relationship types is verified.
163
163
-`relationships: List[string]` ➡ A list of relationship types that need to be
164
164
checked. If the input parameter is empty, procedure will check all types of
165
165
relationships.
@@ -179,7 +179,7 @@ The database contains the following graph objects:
0 commit comments