Noah Zhu

Results 24 comments of Noah Zhu

Another question, should this work as it in Neo4j? ``` SELECT * from ag_catalog.cypher('graph_store', $$ MERGE (n1:`TEST`{id: 'a\'bb'}) MERGE (n2:`TEST`{id: 'bb \'s abc'}) MERGE (n1)-[:`ABC_I'S_a`]->(n2) $$) as (a ag_catalog.agtype); ```

I still have the problem with the python driver, how to handle it with a param which contains single quotes, I digged into the python code, it do set the...

> > Another question, should this work as it in Neo4j? > > ``` > > SELECT * from ag_catalog.cypher('graph_store', $$ > > MERGE (n1:`TEST`{id: 'a\'bb'}) > > MERGE (n2:`TEST`{id:...

The behavior in the python driver NOT WORK ``` prepared_statement = """ MERGE (n1:`TEST` {id: 'a\'bb'}) MERGE (n2:`TEST` {id: 'bb\'s abc'}) MERGE (n1)-[:`ABC_IS_a`]->(n2) """ ag.execCypher( prepared_statement, ) ``` WORK ```...

> > I mean, that query works in Neo4j, but I tried it in pg, it doesn't work. Can a label include quotes? > > ``` > > SELECT *...

> I had the same error showing up, but I worked around it by creating labels separately: > > ```sql > SELECT create_vlabel('graph_store', 'TEST'); > SELECT create_elabel('graph_store', 'ABC_IS\'a'); > ```...

I did some tests with the python driver, the behavior likes below # Case 1 ``` def test(p: str): prepared_statement = """ MERGE (n1:`TEST` {id: %s}) """ ag.execCypher(prepared_statement, params=(p,)) ag.commit()...

Hi @mannas006 I just tried, it seems this doesn't work for me ``` syntax error at or near "'s better for technology companies to be run by product people'" LINE...

I'm recently working on a project with LlamaIndex, there're several kinds of storage can integrate with different kinds of databases, like mongodb for doc store, index store, postgres with pgvector...

Hi @M-Bostone For sure, I'm encountering some problem with age that the behavior is little different with the Neo4j in some specific case, I've already created a issue for this...