John Gemignani

Results 366 comments of 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.

@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 - ![image](https://github.com/user-attachments/assets/db01da41-76c3-46f5-8a16-ea4b2dcfd8df)

@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...

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...