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 b0b12e5 commit 184d5c5Copy full SHA for 184d5c5
cypher-aggregation/src/main/java/org/neo4j/gds/projection/GraphAggregator.java
@@ -417,9 +417,7 @@ private static LazyIdMapBuilder idMapBuilder(
417
@Nullable MapValue targetNodeProperties,
418
int readConcurrency
419
) {
420
- boolean hasLabelInformation = !(sourceNodeLabels.isMissing() && targetNodeLabels.isMissing());
421
- boolean hasProperties = !(sourceNodeProperties == null && targetNodeProperties == null);
422
- return new LazyIdMapBuilder(readConcurrency, hasLabelInformation, hasProperties);
+ return new LazyIdMapBuilder(readConcurrency, true, true);
423
}
424
425
private static @Nullable List<RelationshipPropertySchema> relationshipPropertySchemas(AnyValue relationshipConfigValue) {
0 commit comments