apache-age-python icon indicating copy to clipboard operation
apache-age-python copied to clipboard

Python driver for Apache AGE

Results 7 apache-age-python issues
Sort by recently updated
recently updated
newest added

when I execute command: sudo apt-get update sudo apt-get install python3-dev libpq-dev pip install --no-binary :all: psycopg2 pip install antlr4-python3-runtime pip install apache-age-python, when import age, report an error: ![1652790120(1)](https://user-images.githubusercontent.com/25095662/168809734-3ade9c47-f5af-4b4c-b28e-baff29820693.png)

I had an error of not able to insert a dictonary data, I had to pass the value with json_dumps which got escaped. ``` {'id': 'second', 'class': 'below'} # this...

Coming from Neo4J cypher's implementation, I could do the following: ``` q = ''' UNWIND $rows as row MATCH (g_child:Group {uid: row.child_uid}) MATCH (g_parent:Group {uid: row.parent_uid}) MERGE (g_child)-[:CHILD_GROUP_OF]->(g_parent) RETURN count(*)...

apache-age-python returns an error over result formatting. from the AGEviewerer, this query successfully prints the results as right-left nodes containing the list of the right nodes as shown below: ```...

I tried querying with to_json, json_build_object or row_jo_json but had an error of function not available

I'm trying to run a recursive query that will enable me to process the nodes which can be used for additional operations, and came across the error above: when I...

This is my pull compare and pull request for my internship which is **task3**