Create a NeoNode or a NeoEdge in batch mode.

Property definitions

neo4j $ NeoBatch :: save_entity
	# Create a `NeoNode` or a `NeoEdge` in batch mode.
	fun save_entity(nentity: NeoEntity) do
		if nentity isa NeoNode then
			save_node(nentity)
		else if nentity isa NeoEdge then
			save_edge(nentity)
		else abort
	end
lib/neo4j/neo4j.nit:846,2--853,4