Interface GraphExportNodePropertiesConfig

    • Method Detail

      • graphName

        @Parameter
        java.util.Optional<java.lang.String> graphName()
      • nodeProperties

        @Parameter
        java.util.List<java.lang.String> nodeProperties()
      • nodeLabels

        @Parameter
        @Default
        default java.util.List<java.lang.String> nodeLabels()
      • nodeLabelIdentifiers

        @Ignore
        default java.util.Collection<org.neo4j.gds.NodeLabel> nodeLabelIdentifiers​(GraphStore graphStore)
      • validate

        @Ignore
        default void validate​(GraphStore graphStore)
      • validNodeLabels

        @Ignore
        default java.util.Collection<org.neo4j.gds.NodeLabel> validNodeLabels​(GraphStore graphStore)
        Returns the node labels that are to be considered for writing properties. If nodeLabels contains '*`, this returns all node labels in the graph store that have the specified nodeProperties. Otherwise, it just returns all the labels in the graph store since validation made sure that all node labels have the specified properties.