TuGraph-family / tugraph-db

TuGraph: A High Performance Graph Database.
https://tugraph.org
Apache License 2.0
1.44k stars 192 forks source link

Procedure Reconstruct #597

Closed lipanpan03 closed 3 months ago

lipanpan03 commented 4 months ago
  1. Extend the cypher::FieldData type to support nested lists and maps
  2. Reconstruct the procedure, migrate the new procedure of the old link, and replace the old procedure with procedure_v2
  3. Support for complex unwind statements on new links like
    WITH [{s: "Michael Redgrave", e: "Vanessa Redgrave"},{s: "Michael Redgrave", e: "Corin Redgrave"}] AS pairs UNWIND pairs AS pair MATCH (n1:Person {name:pair.s})-[r]->(n2:Person{name:pair.e}) RETURN r;