In Neo4j, both nodes and relationships can contain properties.

Properties are key-value pairs where the key is a string. Property values are JSON formatted.

Properties are loaded lazily

Property definitions

neo4j $ NeoEntity :: properties
	# In Neo4j, both nodes and relationships can contain properties.
	# Properties are key-value pairs where the key is a string.
	# Property values are JSON formatted.
	#
	# Properties are loaded lazily
	fun properties: JsonObject do return internal_properties or else load_properties
lib/neo4j/neo4j.nit:520,2--525,81