Josh Innis

Results 80 comments of Josh Innis

Hi, `SET a.map = '{"name":"b"}' ` is setting the value of a.map to a string, not a map. remove the surrounding `'`s `SELECT * FROM ag_catalog.cypher('zjdata_graph', $$ MATCH (a:a) WHERE...

Ahh, sorry for the oversight. Property names don't need to be wrapped with `"`. `SELECT * FROM ag_catalog.cypher('zjdata_graph', $$ MATCH (a:a) WHERE a.id = 1 SET a.map = {name:"b"} RETURN...

What version of AGE are you using? I am testing on Master.

The bug fix is not in an official release, its only in master https://github.com/apache/age/commit/ab70781b4b311922f14f2bcb1b2144f1df9a9da1 how did you get AGE, through a release, docker, or did you download the source code?

Try to pull the docker image again `docker pull apache/age` for this bug fix you should be able to restart the session and the bug will be fixed. However, if...

Without upgrading, there is a workaround that was found. https://github.com/apache/age/issues/44 Basically if you wrap the map in an array, the first element in the array will be what the property...

You can use the create_elabel(graph_name, label_name) and create_vlabel(graph_name, label_name) functions. Also, for any single graph, a vertex and an edge can't have the same label and label names are case...

these changes are now included in the PG12 updates.

Hi, List Comprehensions are not currently supported

@deem0n Please provide a pull request that only includes adding our ag_catalog tables as configuration tables, the saved_result_relinfo issue looks to be a separate issue, given what the next line...