I am experiencing a similar issue with . Whenever I run the following query:
SELECT * FROM cypher('multi_in_1_graph', $$ MATCH (cs:CLOSED_SHELL {id: 32722, file_name: "Jaguar_E_Type_roadster"})-[*1..3]->(el:EDGE_LOOP) RETURN el.id AS id, el $$) AS (id integer, el agtype);
It always throws the following error on the first execution:
Subsequent executions do not throw this error but always return empty results. However, when I run this query:
SELECT * FROM cypher('multi_in_1_graph', $$ MATCH (cs:CLOSED_SHELL {id: 32722, file_name: "Jaguar_E_Type_roadster"})-[]->()-[]->()-[]->(el:EDGE_LOOP) RETURN el.id AS id, el $$) AS (id integer, el agtype);
It successfully retrieves valid results.
Could you please help me understand why this is happening and how to resolve the issue?