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
| nodeFilter | String | n/a | A Cypher predicate for filtering nodes in the input graph. See xref:management-ops/projections/graph-project-subgraph.adoc[Projecting a subgraph].
194
+
| concurrency | Integer | 4 | The number of concurrent threads used for running the procedure. Also provides the default value for `writeConcurrency`
195
+
| writeConcurrency | Integer | 'concurrency' | The number of concurrent threads used for writing the node properties.
196
+
|===
197
+
198
+
.Results
199
+
[opts="header",cols="2,3,5"]
200
+
|===
201
+
| Name | Type | Description
202
+
| writeMillis | Integer | Milliseconds for writing result data back to Neo4j.
203
+
| nodeLabelsWritten | Integer | Number of node labels written.
204
+
| graphName | String | The name of a graph stored in the catalog.
205
+
| nodeLabel | String | The written node label.
206
+
|===
207
+
======
208
+
164
209
[.include-with-remove]
165
210
======
166
211
[source, cypher, role=noplay]
@@ -393,6 +438,49 @@ If the `nodeLabels` parameter is specified, it is required that _all_ given node
393
438
--
394
439
395
440
441
+
[[catalog-graph-write-node-label-example]]
442
+
=== Write Node Label
443
+
444
+
To write a new node label to the database for nodes with score higher than `0`, we use the following query:
0 commit comments