Skip to content

Commit 2b7134c

Browse files
committed
Add Remote TriangleCount Mutate
1 parent 2381d30 commit 2b7134c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

procedures/facade-api/configs/community-configs/src/main/java/org/neo4j/gds/triangle/TriangleCountMutateConfig.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,16 @@
2323
import org.neo4j.gds.config.MutateNodePropertyConfig;
2424
import org.neo4j.gds.core.CypherMapWrapper;
2525

26+
import java.util.Map;
27+
2628
@Configuration
2729
public interface TriangleCountMutateConfig extends TriangleCountBaseConfig, MutateNodePropertyConfig {
2830

2931
static TriangleCountMutateConfig of(CypherMapWrapper userInput) {
3032
return new TriangleCountMutateConfigImpl(userInput);
3133
}
34+
35+
static TriangleCountMutateConfig of(Map<String, Object> userInput) {
36+
return of(CypherMapWrapper.create(userInput));
37+
}
3238
}

0 commit comments

Comments
 (0)