I\'ve got a property quantity on our Product-nodes and am looking to do a cypher query that gives me all nodes with quantity = 20 ... prob
quantity
Product
quantity = 20
You can do it the other way round.
MATCH (p:Product) WHERE p.quantity = str(20) RETURN p;
should also work with params.
MATCH (p:Product) WHERE p.quantity = str({quantity}) RETURN p;
or even with inline property matches
MATCH (p:Product {quantity : str({quantity})}) RETURN p;