Add a START statement to the query

Property definitions

neo4j $ CypherQuery :: nstart
	# Add a `START` statement to the query
	fun nstart(query: String): CypherQuery do
		self.query = "{self.query}START {query} "
		return self
	end
lib/neo4j/neo4j.nit:393,2--397,4