Skip to content

Commit 6515284

Browse files
committed
Move mandatory write params to the top
1 parent 91ba255 commit 6515284

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

doc/asciidoc/algorithms/common-configuration/common-mutate-configuration-named-graph.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
[opts="header",cols="1,1,1m,1,4"]
33
|===
44
| Name | Type | Default | Optional | Description
5-
| nodeLabels | String[] | ['*'] | yes | Filter the named graph using the given node labels.
6-
| relationshipTypes | String[] | ['*'] | yes | Filter the named graph using the given relationship types.
7-
| concurrency | Integer | 4 | yes | The number of concurrent threads used for running the algorithm.
85
ifeval::["{entity}" == "relationship"]
96
| mutateRelationshipType | String | n/a | no | The relationship type used for the new relationships written to Neo4j.
107
endif::[]
118
| mutateProperty | String | n/a | no | The {entity} property in the GDS graph to which the {result} is written.
9+
| nodeLabels | String[] | ['*'] | yes | Filter the named graph using the given node labels.
10+
| relationshipTypes | String[] | ['*'] | yes | Filter the named graph using the given relationship types.
11+
| concurrency | Integer | 4 | yes | The number of concurrent threads used for running the algorithm.
1212
|===

doc/asciidoc/algorithms/common-configuration/common-write-configuration-named-graph.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
[opts="header",cols="1,1,1m,1,4"]
33
|===
44
| Name | Type | Default | Optional | Description
5-
| nodeLabels | String[] | ['*'] | yes | Filter the named graph using the given node labels.
6-
| relationshipTypes | String[] | ['*'] | yes | Filter the named graph using the given relationship types.
7-
| concurrency | Integer | 4 | yes | The number of concurrent threads used for running the algorithm. Also provides the default value for 'writeConcurrency'.
8-
| writeConcurrency | Integer | value of 'concurrency' | yes | The number of concurrent threads used for writing the result to Neo4j.
95
ifeval::["{entity}" == "relationship"]
106
| writeRelationshipType | String | n/a | no | The relationship type used to persist the computed relationships in the Neo4j database.
117
endif::[]
128
| writeProperty | String | n/a | no | The {entity} property in the Neo4j database to which the {result} is written.
9+
| nodeLabels | String[] | ['*'] | yes | Filter the named graph using the given node labels.
10+
| relationshipTypes | String[] | ['*'] | yes | Filter the named graph using the given relationship types.
11+
| concurrency | Integer | 4 | yes | The number of concurrent threads used for running the algorithm. Also provides the default value for 'writeConcurrency'.
12+
| writeConcurrency | Integer | value of 'concurrency' | yes | The number of concurrent threads used for writing the result to Neo4j.
1313
|===

0 commit comments

Comments
 (0)