GraphScope
GraphScope copied to clipboard
fix(interactive): Fix passing `Array` to stored procedures for interactive.
Neo4j itself supports stored procedures with variably sized arrays as input, and we have also added support for this feature in this PR. However, currently, we only support C++ procedures that read inputs through their own decoder.
TODO: Enable interactive full pipeline support for variably sized arrays as input.
CALL query([1,2,3]) YIELD *;
where [1,2,3] is parsed as a int array.
Fix #3435