Add a AND statement to the query

Property definitions

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