Add a new node to the graph and return it.

Set the local ID of the node before returning it.

SEE: NeoNodeCollection.add SEE: NeoNodeCollection.create_node SEE: NeoNodeCollection.register

Property definitions

neo4j $ NeoGraph :: create_node
	# Add a new node to the graph and return it.
	#
	# Set the local ID of the node before returning it.
	#
	# SEE: `NeoNodeCollection.add`
	# SEE: `NeoNodeCollection.create_node`
	# SEE: `NeoNodeCollection.register`
	fun create_node: NeoNode do return nodes.create_node
lib/neo4j/graph/graph.nit:31,2--38,53