Skip to content

Commit 2a3adeb

Browse files
committed
Return node IDs path as variant array
So that node IDs are not all cast to strings, but instead keep their original type from the input table.
1 parent 81be931 commit 2a3adeb

File tree

1 file changed

+3
-1
lines changed
  • core-api/src/main/java/org/neo4j/gds/api/properties/relationships

1 file changed

+3
-1
lines changed

core-api/src/main/java/org/neo4j/gds/api/properties/relationships/Path.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@
2626
@Value.Modifiable
2727
public interface Path {
2828

29-
String[] nodeIds();
29+
Object[] nodeIds();
30+
31+
Object[] nodeIdKeyTypes();
3032

3133
String[] nodeLabels();
3234

0 commit comments

Comments
 (0)