We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62512be commit 5b7eb62Copy full SHA for 5b7eb62
cypher-aggregation/src/main/java/org/neo4j/gds/projection/ValueMapWrapper.java
@@ -30,6 +30,7 @@
30
import org.neo4j.values.storable.TextArray;
31
import org.neo4j.values.storable.TextValue;
32
import org.neo4j.values.storable.Value;
33
+import org.neo4j.values.storable.Values;
34
import org.neo4j.values.virtual.MapValue;
35
36
import java.util.ArrayList;
@@ -52,7 +53,7 @@ public static ValueMapWrapper create(@Nullable MapValue config) {
52
53
}
54
Map<String, AnyValue> configMap = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
55
config.foreach((key, value) -> {
- if (value != null) {
56
+ if (value != null && value != Values.NO_VALUE) {
57
configMap.put(key, value);
58
59
});
0 commit comments