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
MATCH (p:Product) WHERE toInt(p.quantity) = 20;