Execute batch and check for errors.

Abort if batch.execute returns errors.

Property definitions

neo4j $ Neo4jGraphStore :: do_batch
	# Execute `batch` and check for errors.
	#
	# Abort if `batch.execute` returns errors.
	private fun do_batch(batch: NeoBatch) do
		var errors = batch.execute
		assert errors.is_empty else
			for e in errors do sys.stderr.write("{e}\n")
		end
	end
lib/neo4j/graph/graph.nit:269,2--277,4