You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please use a 👍 reaction to provide a +1/vote. This helps the community and maintainers prioritize this request.
If you are interested in working on this issue or have submitted a pull request, please leave a comment.
Describe the bug
When using a parameterized openCypher query, None cannot be currently be passed in through the query parameters.
OS: MacOS
Browser: Firefox
Graph Notebook Version: 4.1.0
Graph Database & Version: Amazon Neptune 1.3.1.0
To Reproduce
Steps to reproduce the behavior:
Run these 2 cells in a notebook connected to Neptune 1.3.1.0:
params = {"X": None}
%%oc -qp params
CREATE (a:Person {name: $X})
See MalformedQueryException
Expected behavior
Expected behaviour is for it to correctly serialize as a null in the parameter json string and for the query to behave identically to the non-parameterized version.
The text was updated successfully, but these errors were encountered:
Community Note
Describe the bug
When using a parameterized openCypher query,
None
cannot be currently be passed in through the query parameters.To Reproduce
Steps to reproduce the behavior:
MalformedQueryException
Expected behavior
Expected behaviour is for it to correctly serialize as a
null
in the parameter json string and for the query to behave identically to the non-parameterized version.The text was updated successfully, but these errors were encountered: