Interface InverseRelationshipsConfig

  • All Superinterfaces:
    org.neo4j.gds.config.AlgoBaseConfig, org.neo4j.gds.config.BaseConfig, org.neo4j.gds.config.ConcurrencyConfig, org.neo4j.gds.config.JobIdConfig, org.neo4j.gds.config.ToMapConvertible

    @Configuration
    public interface InverseRelationshipsConfig
    extends org.neo4j.gds.config.AlgoBaseConfig
    • Field Summary

      • Fields inherited from interface org.neo4j.gds.config.AlgoBaseConfig

        NODE_LABELS_KEY, RELATIONSHIP_TYPES_KEY
      • Fields inherited from interface org.neo4j.gds.config.BaseConfig

        LOG_PROGRESS_KEY, SUDO_KEY
      • Fields inherited from interface org.neo4j.gds.config.ConcurrencyConfig

        CONCURRENCY_KEY, CONCURRENCY_LIMITATION, DEFAULT_CONCURRENCY
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default java.util.List<java.lang.String> nodeLabels()  
      static InverseRelationshipsConfig of​(org.neo4j.gds.core.CypherMapWrapper configuration)  
      static @Nullable java.util.List<java.lang.String> parseRelTypes​(java.lang.Object input)  
      java.util.List<java.lang.String> relationshipTypes()  
      default void validateNotIndexed​(org.neo4j.gds.api.GraphStore graphStore, java.util.Collection<org.neo4j.gds.NodeLabel> selectedLabels, java.util.Collection<org.neo4j.gds.RelationshipType> selectedRelationshipTypes)  
      default void validateNotUndirected​(org.neo4j.gds.api.GraphStore graphStore, java.util.Collection<org.neo4j.gds.NodeLabel> selectedLabels, java.util.Collection<org.neo4j.gds.RelationshipType> selectedRelationshipTypes)  
      • Methods inherited from interface org.neo4j.gds.config.AlgoBaseConfig

        graphStoreValidation, internalRelationshipTypes, nodeLabelIdentifiers, validateNodeLabels, validateRelationshipTypes
      • Methods inherited from interface org.neo4j.gds.config.BaseConfig

        configKeys, logProgress, sudo, toMap, usernameOverride
      • Methods inherited from interface org.neo4j.gds.config.ConcurrencyConfig

        concurrency, minBatchSize, validateConcurrency
      • Methods inherited from interface org.neo4j.gds.config.JobIdConfig

        jobId
    • Method Detail

      • parseRelTypes

        @Nullable
        static @Nullable java.util.List<java.lang.String> parseRelTypes​(java.lang.Object input)
      • relationshipTypes

        @ConvertWith(method="parseRelTypes")
        java.util.List<java.lang.String> relationshipTypes()
        Specified by:
        relationshipTypes in interface org.neo4j.gds.config.AlgoBaseConfig
      • nodeLabels

        @Ignore
        default java.util.List<java.lang.String> nodeLabels()
        Specified by:
        nodeLabels in interface org.neo4j.gds.config.AlgoBaseConfig
      • validateNotIndexed

        @GraphStoreValidationCheck
        default void validateNotIndexed​(org.neo4j.gds.api.GraphStore graphStore,
                                        java.util.Collection<org.neo4j.gds.NodeLabel> selectedLabels,
                                        java.util.Collection<org.neo4j.gds.RelationshipType> selectedRelationshipTypes)
      • validateNotUndirected

        @GraphStoreValidationCheck
        default void validateNotUndirected​(org.neo4j.gds.api.GraphStore graphStore,
                                           java.util.Collection<org.neo4j.gds.NodeLabel> selectedLabels,
                                           java.util.Collection<org.neo4j.gds.RelationshipType> selectedRelationshipTypes)