neo4j :: GraphStore :: save_part
Assume that for each relationship specified, both ends are already saved or are specified in the same call to this method.
# Save the specified part of the graph.
#
# Assume that for each relationship specified, both ends are already saved
# or are specified in the same call to this method.
fun save_part(nodes: Collection[NeoNode],
edges: Collection[NeoEdge]) is abstract
lib/neo4j/graph/graph.nit:175,2--180,42
redef fun save_part(nodes, edges) do
assert batch_max_size > 0
fire_started
total = nodes.length + edges.length
done_part = 0
save_entities(nodes)
save_entities(edges)
fire_done
end
lib/neo4j/graph/graph.nit:238,2--247,4