Skip to content

Commit 94648f7

Browse files
committed
Remove weight property for weakly connected components
1 parent 4b211a1 commit 94648f7

5 files changed

Lines changed: 5 additions & 10 deletions

cypher/Community_Detection/Community_Detection_3a_WeaklyConnectedComponents_Estimate.cypher

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
CALL gds.wcc.write.estimate(
44
$dependencies_projection + '-cleaned', {
5-
relationshipWeightProperty: $dependencies_projection_weight_property
6-
,writeProperty: $dependencies_projection_write_property
5+
writeProperty: $dependencies_projection_write_property
76
,consecutiveIds: true
87
})
98
YIELD requiredMemory

cypher/Community_Detection/Community_Detection_3b_WeaklyConnectedComponents_Statistics.cypher

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
CALL gds.wcc.stats(
44
$dependencies_projection + '-cleaned', {
5-
relationshipWeightProperty: $dependencies_projection_weight_property
6-
,consecutiveIds: true
5+
consecutiveIds: true
76
})
87
YIELD componentCount
98
,preProcessingMillis

cypher/Community_Detection/Community_Detection_3c_WeaklyConnectedComponents_Mutate.cypher

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
CALL gds.wcc.mutate(
44
$dependencies_projection + '-cleaned', {
5-
relationshipWeightProperty: $dependencies_projection_weight_property
6-
,mutateProperty: $dependencies_projection_write_property
5+
mutateProperty: $dependencies_projection_write_property
76
,consecutiveIds: true
87
})
98
YIELD componentCount

cypher/Community_Detection/Community_Detection_3d_WeaklyConnectedComponents_Stream.cypher

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
CALL gds.wcc.stream(
44
$dependencies_projection + '-cleaned', {
5-
relationshipWeightProperty: $dependencies_projection_weight_property,
6-
consecutiveIds: true
5+
consecutiveIds: true
76
})
87
YIELD nodeId, componentId
98
WITH componentId

cypher/Community_Detection/Community_Detection_3e_WeaklyConnectedComponents_Write.cypher

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
CALL gds.wcc.write(
44
$dependencies_projection + '-cleaned', {
5-
relationshipWeightProperty: $dependencies_projection_weight_property
6-
,consecutiveIds: true
5+
consecutiveIds: true
76
,writeProperty: 'communityWeaklyConnectedComponentId'
87
})
98
YIELD componentCount

0 commit comments

Comments
 (0)