Add a MATCH statement to the query

Property definitions

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