Pypher icon indicating copy to clipboard operation
Pypher copied to clipboard

Python Cypher Querybuilder

Results 6 Pypher issues
Sort by recently updated
recently updated
newest added

ran with python 3.7.0 on both windows and mac versions, here is an output example: ```tmp = Pypher().Match.node("yo", labels=["label"]) str(tmp) 'MATCH (yo:`label`) shape shape.`len` shape shape.`len`' str(tmp) 'MATCH (yo:`label`) shape...

Changed the `__getattr__` definition in `Pypher` to fix issue https://github.com/emehrkay/Pypher/issues/47. Properties are now recognized as attributes enclosed by single underscores instead of double underscored to avoid any interference with the...

Thank you for this package. I wanted to know if the nodes can be specified by strings For example, I want to write a query `MATCH (n) WHERE n.root =...

I want to write something like: ``` p1 = Pypher() p2 = Pypher() p2.split(, ",") p1.IN(p2) ``` But the way the `class IN(Statement)` is defined means that this will come...

Bumps [certifi](https://github.com/certifi/python-certifi) from 2021.10.8 to 2022.12.7. Commits 9e9e840 2022.12.07 b81bdb2 2022.09.24 939a28f 2022.09.14 aca828a 2022.06.15.2 de0eae1 Only use importlib.resources's new files() / Traversable API on Python ≥3.11 ... b8eb5e9 2022.06.15.1...

dependencies

Hello, I'm trying to codify the following query in Pypher for readability, but I don't seem to get quite far: ``` CALL apoc.periodic.iterate( "MATCH (p) RETURN p", " CALL apoc.ml.openai.embedding([item...