Skip to content

Commit 5bbf16f

Browse files
Change table headers to use full library names
Co-authored-by: David Oliver <[email protected]>
1 parent cbb89ee commit 5bbf16f

7 files changed

+34
-34
lines changed

doc/asciidoc/migration-algos-common.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ This section describes changes between Graph Algorithms library and Graph Data
66
.Namespace
77
[opts=header,cols="1,1"]
88
|===
9-
|GA | GDS
9+
|Graph Algorithms v3.5 |Graph Data Science v1.0
1010
|algo.* | gds.*
1111
|===
1212

1313
.Changes in Parameters
1414
[opts=header,cols="1,1,1"]
1515
|===
16-
|GA | GDS Named Graph | GDS Anonymous Graph
16+
|Graph Algorithms v3.5 |Graph Data Science v1.0 Named Graph |Graph Data Science v1.0 Anonymous Graph
1717
| - | graphName | graphConfiguration
1818
| node label footnote:common-node-inlined[Moved to `graphConfiguration` as `nodeProjection`] | - | -
1919
| relationship type footnote:common-rel-inlined[Moved to `graphConfiguration` as `relationshipProjection`] | - | -
@@ -24,7 +24,7 @@ This section describes changes between Graph Algorithms library and Graph Data
2424
.Changes in configuration parameter map
2525
[opts=header,cols="1,1"]
2626
|===
27-
|GA | GDS
27+
|Graph Algorithms v3.5 |Graph Data Science v1.0
2828
|`write: true` | Replaced by dedicated `write` mode
2929
|`graph: 'cypher'\|'huge'` | Removed. Always using `huge` graph footnote:graph-param[Graph creation with cypher queries has dedicate `gds.graph.create.cypher` procedure. There are parameters `nodeQuery` and `relationshipQuery` for anonymous graphs]
3030
|direction | Replaced by `projection` parameter of `relationshipProjection`

doc/asciidoc/migration-graph-ops.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
.Changes in the YIELD fields
1616
[opts=header,cols="1,1"]
1717
|===
18-
|GA | GDS
18+
|Graph Algorithms v3.5 |Graph Data Science v1.0
1919
| requiredMemory | requiredMemory
2020
| bytesMin | bytesMin
2121
| bytesMax | bytesMax
@@ -30,7 +30,7 @@ The most significant change in memory estimation is that in GDS to estimate an o
3030
.Estimating the memory requirements of loading a named graph:
3131
[opts=header,cols="1a,1a"]
3232
|===
33-
|GA | GDS
33+
|Graph Algorithms v3.5 |Graph Data Science v1.0
3434
2+| Native Projections
3535
|
3636
[source, cypher]
@@ -80,7 +80,7 @@ CALL gds.graph.create.cypher.estimate(
8080
.Changes in the YIELD fields
8181
[opts=header, cols="1,1"]
8282
|====
83-
| GA | GDS
83+
|Graph Algorithms v3.5 |Graph Data Science v1.0
8484
| name | graphName
8585
| graph | -
8686
| direction | -
@@ -100,7 +100,7 @@ CALL gds.graph.create.cypher.estimate(
100100
.Loading a named graph in the default way:
101101
[opts=header,cols="1a,1a"]
102102
|===
103-
| GA | GDS
103+
|Graph Algorithms v3.5 |Graph Data Science v1.0
104104
2+| Minimal Native Projection
105105
|
106106
[source, cypher]
@@ -218,7 +218,7 @@ CALL gds.graph.create(
218218
.Loading a named graph using Cypher queries:
219219
[opts=header,cols="1a,1a"]
220220
|===
221-
|GA | GDS
221+
|Graph Algorithms v3.5 |Graph Data Science v1.0
222222
2+| Basic Cypher queries, defining source and target
223223
|
224224
[source, cypher]
@@ -289,7 +289,7 @@ CALL gds.graph.create.cypher(
289289
.Changes in the YIELD fields
290290
[opts=header,cols="1,1"]
291291
|===
292-
|GA | GDS
292+
|Graph Algorithms v3.5 |Graph Data Science v1.0
293293
| name | graphName
294294
| nodes | nodeCount
295295
| relationships | relationshipCount
@@ -305,7 +305,7 @@ CALL gds.graph.create.cypher(
305305
.Listing named graphs:
306306
[opts=header,cols="1a,1a"]
307307
|===
308-
|GA | GDS
308+
|Graph Algorithms v3.5 |Graph Data Science v1.0
309309
|
310310
[source, cypher]
311311
----
@@ -324,7 +324,7 @@ CALL gds.graph.list()
324324
.Changes in the YIELD fields
325325
[opts=header,cols="1,1"]
326326
|===
327-
|GA | GDS
327+
|Graph Algorithms v3.5 |Graph Data Science v1.0
328328
| name | graphName
329329
| nodes | nodeCount
330330
| relationships | relationshipCount
@@ -343,7 +343,7 @@ CALL gds.graph.list()
343343
.Viewing information about a specific named graph:
344344
[opts=header,cols="1a,1a"]
345345
|===
346-
|GA | GDS
346+
|Graph Algorithms v3.5 |Graph Data Science v1.0
347347
2+| View information for a Named graph
348348
|
349349
[source, cypher]
@@ -388,7 +388,7 @@ RETURN dd.min, dd.max, dd.mean, dd.p50
388388
.Changes in the YIELD fields
389389
[opts=header,cols="1,1"]
390390
|===
391-
|GA | GDS
391+
|Graph Algorithms v3.5 |Graph Data Science v1.0
392392
| name | graphName
393393
| nodes | nodeCount
394394
| relationships | relationshipCount
@@ -406,7 +406,7 @@ RETURN dd.min, dd.max, dd.mean, dd.p50
406406
.Removing a named graph:
407407
[opts=header,cols="1a,1a"]
408408
|===
409-
|GA | GDS
409+
|Graph Algorithms v3.5 |Graph Data Science v1.0
410410
|
411411
[source, cypher]
412412
----

doc/asciidoc/migration-louvain.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.Changes in Configuration
55
[opts=header,cols="1a,1a"]
66
|===
7-
|GA | GDS
7+
|Graph Algorithms v3.5 |Graph Data Science v1.0
88
| direction | -
99
| levels | maxLevels
1010
| concurrency | concurrency
@@ -23,7 +23,7 @@
2323
.Changes in YIELD fields
2424
[opts=header,cols="1a,1a"]
2525
|===
26-
| GA | GDS
26+
|Graph Algorithms v3.5 |Graph Data Science v1.0
2727
| loadMillis | createMillis
2828
| computeMillis | computeMillis
2929
| writeMillis | writeMillis
@@ -48,7 +48,7 @@
4848
.Louvain Stream Mode
4949
[opts=header,cols="1a,1a"]
5050
|===
51-
|GA | GDS
51+
|Graph Algorithms v3.5 |Graph Data Science v1.0
5252
2+|Minimalistic streaming over named graph
5353
|
5454
[source, cypher]
@@ -181,7 +181,7 @@ CALL gds.louvain.stream({
181181
.Louvain Write Mode
182182
[opts=header,cols="1a,1a"]
183183
|===
184-
|GA | GDS
184+
|Graph Algorithms v3.5 |Graph Data Science v1.0
185185
2+| Minimalistic write with just `writeProperty`
186186
|
187187
[source, cypher]

doc/asciidoc/migration-lpa.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.Changes in Configuration
55
[opts=header,cols="1a,1a"]
66
|===
7-
|GA | GDS
7+
|Graph Algorithms v3.5 |Graph Data Science v1.0
88
| direction | -
99
| iterations | maxIterations
1010
| concurrency | concurrency
@@ -23,7 +23,7 @@
2323
.Changes in YIELD fields
2424
[opts=header,cols="1a,1a"]
2525
|===
26-
|GA | GDS
26+
|Graph Algorithms v3.5 |Graph Data Science v1.0
2727
|loadMillis |createMillis
2828
|computeMillis |computeMillis
2929
|writeMillis |writeMillis
@@ -43,7 +43,7 @@
4343
.Label Propagation Stream Mode
4444
[opts=header,cols="1a,1a"]
4545
|===
46-
|GA | GDS
46+
|Graph Algorithms v3.5 |Graph Data Science v1.0
4747
2+| Streaming over a named graph
4848
|
4949
[source, cypher]
@@ -153,7 +153,7 @@ CALL gds.labelPropagation.stream({
153153
.Label Propagation Write Mode
154154
[opts=header,cols="1a,1a"]
155155
|===
156-
|GA | GDS
156+
|Graph Algorithms v3.5 |Graph Data Science v1.0
157157
2+|Minimalistic write
158158
|
159159
[source, cypher]

doc/asciidoc/migration-node-sim.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.Changes in Configuration
55
[opts=header,cols="1a,1a"]
66
|===
7-
|GA | GDS
7+
|Graph Algorithms v3.5 |Graph Data Science v1.0
88
| direction | -
99
| concurrency | concurrency
1010
| readConcurrency | readConcurrency footnote:node-sim-read[Only when using anonymous graph]
@@ -24,7 +24,7 @@
2424
.Changes in YIELD fields
2525
[opts=header,cols="1a,1a"]
2626
|===
27-
| GA | GDS
27+
|Graph Algorithms v3.5 |Graph Data Science v1.0
2828
| loadMillis | createMillis
2929
| computeMillis | computeMillis
3030
| writeMillis | writeMillis
@@ -45,7 +45,7 @@
4545
.Node Similarity Stream Mode
4646
[opts=header,cols="1a,1a"]
4747
|===
48-
|GA | GDS
48+
|Graph Algorithms v3.5 |Graph Data Science v1.0
4949
2+| Minimalistic streaming over named graph
5050
|
5151
[source, cypher]
@@ -178,7 +178,7 @@ CALL gds.nodeSimilarity.stream({
178178
.Node Similarity Write Mode
179179
[opts=header,cols="1a,1a"]
180180
|===
181-
|GA | GDS
181+
|Graph Algorithms v3.5 |Graph Data Science v1.0
182182
2+|Minimalistic `write` with `writeRelationshipType` and `writeProperty`
183183
|
184184
[source, cypher]

doc/asciidoc/migration-page-rank.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.Changes in Configuration
55
[opts=header,cols="1a,1a"]
66
|===
7-
|GA | GDS
7+
|Graph Algorithms v3.5 |Graph Data Science v1.0
88
| direction | -
99
| iterations | maxIterations
1010
| tolerance | tolerance
@@ -21,7 +21,7 @@
2121
.Changes in YIELD fields
2222
[opts=header,cols="1a,1a"]
2323
|===
24-
| GA | GDS
24+
|Graph Algorithms v3.5 |Graph Data Science v1.0
2525
| loadMillis | createMillis
2626
| computeMillis | computeMillis
2727
| writeMillis | writeMillis
@@ -41,7 +41,7 @@
4141
.PageRank Stream Mode
4242
[opts=header,cols="1a,1a"]
4343
|===
44-
|GA | GDS
44+
|Graph Algorithms v3.5 |Graph Data Science v1.0
4545
2+|Minimalistic stream over named graph
4646
|
4747
[source, cypher]
@@ -151,7 +151,7 @@ CALL gds.pageRank.stream({
151151
.PageRank Write Mode
152152
[opts=header,cols="1a,1a"]
153153
|===
154-
|GA | GDS
154+
|Graph Algorithms v3.5 |Graph Data Science v1.0
155155
2+| Running `write` mode on named graph
156156
|
157157
[source, cypher]

doc/asciidoc/migration-wcc.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.Changes in Configuration
55
[opts=header,cols="1a,1a"]
66
|===
7-
|GA | GDS
7+
|Graph Algorithms v3.5 |Graph Data Science v1.0
88
| direction | -
99
| concurrency | concurrency
1010
| readConcurrency | readConcurrency footnote:wcc-read[Only when using anonymous graph]
@@ -22,7 +22,7 @@
2222
.Changes in YIELD fields
2323
[opts=header,cols="1a,1a"]
2424
|===
25-
| GA | GDS
25+
|Graph Algorithms v3.5 |Graph Data Science v1.0
2626
| loadMillis | createMillis
2727
| computeMillis | computeMillis
2828
| writeMillis | writeMillis
@@ -42,7 +42,7 @@
4242
.Weakly Connected Components Stream Mode
4343
[opts=header,cols="1a,1a"]
4444
|===
45-
|GA | GDS
45+
|Graph Algorithms v3.5 |Graph Data Science v1.0
4646
2+| Minimalistic stream over named graph
4747
|
4848
[source, cypher]
@@ -153,7 +153,7 @@ CALL gds.wcc.stream({
153153
.Weakly Connected Components Write Mode
154154
[opts=header,cols="1a,1a"]
155155
|===
156-
|GA | GDS
156+
|Graph Algorithms v3.5 |Graph Data Science v1.0
157157
2+| Minimalistic `write` mode
158158
|
159159
[source, cypher]

0 commit comments

Comments
 (0)