I am using 26.2.1 I noticed in Open Cypher queries parameters are not supported in the node construct () ``` String query="MATCH (b:B {x:$x}) RETURN b";//Parameters don't work here String query="MATCH (b:B) WHERE b.x=$x RETURN b";//Parameters work here ```