Skip to content

Commit 6396664

Browse files
authored
Merge pull request #9885 from orazve/drop-np
Add drop node properties snowgraph endpoint
2 parents 37f5cb4 + 4c1b53c commit 6396664

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

applications/graph-store-catalog/src/main/java/org/neo4j/gds/applications/graphstorecatalog/GraphStoreValidationService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class GraphStoreValidationService {
4444
/**
4545
* @throws java.lang.IllegalArgumentException if at least one key in the list of node properties is not present in the graph store
4646
*/
47-
void ensureNodePropertiesExist(GraphStore graphStore, Collection<String> nodeProperties) {
47+
public void ensureNodePropertiesExist(GraphStore graphStore, Collection<String> nodeProperties) {
4848
var invalidProperties = nodeProperties.stream()
4949
.filter(nodeProperty -> !graphStore.hasNodeProperty(nodeProperty))
5050
.collect(Collectors.toList());
@@ -58,7 +58,7 @@ void ensureNodePropertiesExist(GraphStore graphStore, Collection<String> nodePro
5858
}
5959
}
6060

61-
List<String> filterExistingNodeProperties(GraphStore graphStore, Collection<String> nodeProperties) {
61+
public List<String> filterExistingNodeProperties(GraphStore graphStore, Collection<String> nodeProperties) {
6262
return nodeProperties.stream()
6363
.filter(graphStore::hasNodeProperty)
6464
.toList();

0 commit comments

Comments
 (0)