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
@@ -47,14 +47,15 @@ programming languages and they are all runnable inside Memgraph.
47
47
48
48
### Install MAGE
49
49
50
-
If you started Memgraph with the `memgraph-platform` or `memgraph-mage` Docker
50
+
If you started Memgraph with the `memgraph-mage` Docker
51
51
image, MAGE is already included and you can skip to step 3.
52
52
53
53
If you are using Linux, you can [install MAGE from
54
54
source](/advanced-algorithms/install-mage#linux).
55
55
56
-
The execution of graph algorithms can be accelerated with the GPU by using the
57
-
[Memgraph X NVIDIA cuGraph](/advanced-algorithms/install-mage#mage--nvidia-cugraph) version of the library.
56
+
<Callouttype="info">
57
+
We currently do not produce MAGE images with cuGraph (since version 1.3). If this is something you require, please raise an [issue](https://github.com/memgraph/mage/issues)
58
+
</Callout>
58
59
59
60
### Load query modules
60
61
@@ -82,6 +83,33 @@ MAGE compatibility with Memgraph versions.
With the `migrate.neo4j()` procedure, you can access Neo4j and migrate your data to Memgraph.
104
+
The resulting nodes and edges are converted into a stream of rows which can include labels, properties, and primitives.
105
+
**Streaming of raw node and relationship objects is not supported**, and users are advised to migrate all the necessary identifiers
106
+
in order to recreate the same graph in Memgraph.
107
+
108
+
{<h4className="custom-header"> Input: </h4>}
109
+
110
+
-`label_or_rel_or_query: str` ➡ Label name (written in format `(:Label)`), relationship name (written in format `[:rel_type]`) or a plain cypher query.
111
+
-`config: mgp.Map` ➡ Connection parameters (as in `gqlalchemy.Neo4j`). Notable parameters are `host[String]` and `port[Integer]`.
112
+
-`config_path` ➡ Path to a JSON file containing configuration parameters.
-`row: mgp.Map` ➡ The result table as a stream of rows.
118
+
- When retrieving nodes using the `(:Label)` syntax, row will have the following keys: `labels` and `properties`.
119
+
- When retrieving relationships using the `[:REL_TYPE]` syntax, row will have the following keys: `from_labels`, `to_labels`, `from_properties`, `to_properties` and `edge_properties`.
120
+
- When retrieving results using a plain Cypher query, row will have keys identical to the returned column names from the Cypher query.
121
+
122
+
{<h4className="custom-header"> Usage: </h4>}
123
+
124
+
#### Retrieve nodes of certain label and create them in Memgraph
0 commit comments