sir-sa

Results 2 comments of sir-sa

SELECT * FROM cypher('graph_name', $$ UNWIND [1,2,3] AS value MERGE (n {property: value}) $$) AS (a agtype);

--Cypher query: Retriev all AccessPoint vertices ordered by id, utilizing BTREE index on vertex id----- SELECT * FROM cypher( 'test-graph', $$ MATCH (ap:AccessPoint) WITH ap ORDER BY id(ap) RETURN ap...