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: doc/asciidoc/migration-algos-common.adoc
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -14,11 +14,11 @@ This section describes changes between Graph Algorithms library and Graph Data
14
14
[opts=header,cols="1,1,1"]
15
15
|===
16
16
|Graph Algorithms v3.5 |Graph Data Science v1.0 Named Graph |Graph Data Science v1.0 Anonymous Graph
17
-
| - | graphName | graphConfiguration
17
+
| - | `graphName` | `graphConfiguration`
18
18
| node label footnote:common-node-inlined[Moved to `graphConfiguration` as `nodeProjection`] | - | -
19
19
| relationship type footnote:common-rel-inlined[Moved to `graphConfiguration` as `relationshipProjection`] | - | -
20
-
| direction | - | -
21
-
| config | configuration | -
20
+
| `direction` | - | -
21
+
| `config` | `configuration` | -
22
22
|===
23
23
24
24
.Changes in configuration parameter map
@@ -27,12 +27,12 @@ This section describes changes between Graph Algorithms library and Graph Data
27
27
|Graph Algorithms v3.5 |Graph Data Science v1.0
28
28
|`write: true` | Replaced by dedicated `write` mode
29
29
|`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]
30
-
|direction | Replaced by `projection` parameter of `relationshipProjection`
30
+
|`direction` | Replaced by `projection` parameter of `relationshipProjection`
|`direction: 'BOTH'` | Removed footnote:direction-both[This behaviour can be achieved by creating two relationship projections - one with `orientation: 'NATURAL'` and one with `orientation: 'REVERSE'`. See <<direction-both-example, this example>>]
34
34
|`undirected: true` | Replaced by `orientation: 'UNDIRECTED'` parameter of `relationshipProjection`
35
-
|duplicateRelationships | Replaced by `aggregation` parameter of `relationshipProjection`
35
+
|`duplicateRelationships` | Replaced by `aggregation` parameter of `relationshipProjection`
Copy file name to clipboardExpand all lines: doc/asciidoc/migration-graph-ops.adoc
+57-57Lines changed: 57 additions & 57 deletions
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,13 @@
16
16
[opts=header,cols="1,1"]
17
17
|===
18
18
|Graph Algorithms v3.5 |Graph Data Science v1.0
19
-
| requiredMemory | requiredMemory
20
-
| bytesMin | bytesMin
21
-
| bytesMax | bytesMax
22
-
| mapView | mapView
23
-
| - | treeView
24
-
| - | nodeCount
25
-
| - | relationshipCount
19
+
| `requiredMemory` | `requiredMemory`
20
+
| `bytesMin` | `bytesMin`
21
+
| `bytesMax` | `bytesMax`
22
+
| `mapView` | `mapView`
23
+
| - | `treeView`
24
+
| - | `nodeCount`
25
+
| - | `relationshipCount`
26
26
|===
27
27
28
28
The most significant change in memory estimation is that in GDS to estimate an operation you suffix it with `.estimate` while in GA the operation had to be passed as parameter to `algo.memrec`.
0 commit comments