Retrieve a part of the graph from the specified JSON document.

For the expected format, see JsonGraphStore.

Property definitions

neo4j :: json_graph_store $ NeoGraph :: load_json
	# Retrieve a part of the graph from the specified JSON document.
	#
	# For the expected format, see `JsonGraphStore`.
	fun load_json(t: Text) do
		load_json_object(t.parse_json.as(JsonObject))
	end
lib/neo4j/graph/json_graph_store.nit:159,2--164,4