Get the entity id if connected to base

Property definitions

neo4j $ NeoEntity :: id
	# Get the entity `id` if connected to base
	fun id: nullable Int do
		if url == null then return null
		return url.split("/").last.to_i
	end
lib/neo4j/neo4j.nit:535,2--539,4