John Gemignani
John Gemignani
@MironAtHome If you are going to change the function return type, you need to verify that all locations that call it will not have an issue with that change.
@MironAtHome Just wanted to make sure.
@xephtar Is there a reason that you need to match without direction **-[]-** ? That is, by far, one of the most resource intensive match patterns and basically negates the...
@shinyaaa There appears to be an issue with the build regression for this one :( Please look into it when you have an opportunity - 
@petrarca Here is a way - ``` psql-16.2-5432-psql=# SELECT * FROM cypher('test', $$ match (p) return ag_catalog.agtype_out(p) $$) as (p text); p ------------------------------------------------------------------------------ {"id": 281474976710657, "label": "", "properties": {"name": "John"}}::vertex...
@petrarca Yw. If this resolves your issue, please consider closing the ticket :)
Nodes exist in their node label table. Edges exist in their edge label table. Each has a unique id, they are not duplicated. Now, can you create 2 or more...
@tvaeyens I was able to reproduce your error - ``` psql-16.2-5432-pgsql=# SELECT * FROM cypher('test_graph', $$ psql-16.2-5432-pgsql$# MATCH (a)-[r]->(b) psql-16.2-5432-pgsql$# return a, r, b psql-16.2-5432-pgsql$# $$) AS (a agtype, r...
@tvaeyens Looking into this
I could have sworn that we fixed this bug a while ago. Sigh,... here it is with just a simple merge command. ``` psql-16.2-5432-psql=# SELECT * FROM cypher('test_graph', $$ MERGE...