neobolt.exceptions.CypherSyntaxError: Parameter maps cannot be used in MATCH patterns (use a literal map instead, eg. "{id: {param}.id}") (line 1, column 13 (offset: 12))
"MATCH (node { properties })"
what is the reason for that? is it a python bolt...
That's what I ended up doing, with a little method to make the literal map string, so are paramater maps in MATCH queries not in the cypher spec, or is it not implemented by the python bolt driver?
Hi @MuddyBootsCode sorry for not being clear.
look at the value of name in the props dictionary, it causes what is commonly/popularly known as an "sql injection".
it's possible, but I agree with you it may not be good practice and that you need a sch...