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
nodes, # One or more dataframes describing the nodes
78
-
relationships # One or more dataframes describing the relationships
77
+
nodes, # One or more dataframes containing node data
78
+
relationships # One or more dataframes containing relationship data
79
79
)
80
80
----
81
81
82
-
The above examples create a simple graph using one node and one relationship `DataFrame`.
82
+
The above example creates a simple graph using one node and one relationship `DataFrame`.
83
83
The created graph is equivalent to a graph created by the following Cypher query:
84
84
85
85
[source, cypher]
@@ -95,7 +95,7 @@ CREATE
95
95
(d)-[:REL {weight: 42.0}]->(a),
96
96
----
97
97
98
-
It is possible to supply more than one data frame for both the nodes and the relationships.
98
+
It is possible to supply more than one data frame, both for nodes and relationships.
99
99
If multiple node dataframes are used, they need to contain distinct node ids across all node data frames.
100
100
The supported format for the node data frames is described in <<arrow-node-columns, Arrow node schema>> and the format for the relationship data frames is described in <<arrow-relationship-columns, Arrow relationship schema>>.
0 commit comments