We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9812de9 commit 8d04c6cCopy full SHA for 8d04c6c
modules/ROOT/pages/traversal-framework/traversal-framework-java-api.adoc
@@ -370,7 +370,7 @@ class MaxWeightPathExpander implements PathExpander<Double>
370
filtered.add(relationship);
371
}
372
373
- return Iterables.asResourceIterable(filtered);
+ return ResourceIterable.of(filtered);
374
375
376
@Override
@@ -381,6 +381,8 @@ class MaxWeightPathExpander implements PathExpander<Double>
381
382
----
383
384
+`ResourceIterable.of` is available starting from Neo4j 2026.03.
385
+
386
Here is an example of how to use the custom `PathExpander` and set the initial state:
387
388
[source, java, role="nocopy"]
0 commit comments