Mark Henderson
Mark Henderson
It would probably make more sense as a global setting. I'll take a look through the code and see if I can come up with anything.
The reason why it is `p.__property__` or `p.property('property')` is because `p.property` takes care of defining a `Statement` when a `Statement` is at the bottom of the chain it does double...
^^^ keeping the double underscore for property syntax, we'd have to define the behavior of every dunder method on the Pypher class. it may make more sense to drop it
This is a great catch. Thank you for doing the work and the PR. It changes the API, so it may warrant a major version bump. I will do the...
Howdy, Im not sure that I fully understand. The node name, the `n` in your example, could be dynamic and named different things? If that is the case you should...
I was able to get `STATEMENT` to print out, I think that is an error with the `Anon` object. I will check into it. I did manage to get something...
The bound params are substituted out for a few reasons: 1. It is safer. Typically the params are arguments provided by users. Think of post/get data from a browser. They...
I have a testing tool that will substitute the variables. I use it for logging. ```python def _query_debug(query, params): from string import Template if not params: return query temp =...
Which library are you using to run queries in python? It should have a way to pass in parameters And to do named params, you could do something like ```python...
py2neo is great. Here is the base query method that accepts params https://py2neo.org/2021.1/workflow.html#py2neo.Graph.run