apoc.generate.config.RelationshipGeneratorConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc Show documentation
Show all versions of apoc Show documentation
A collection of useful Neo4j Procedures
package apoc.generate.config;
/**
* Configuration for a {@link apoc.generate.relationship.RelationshipGenerator}.
*/
public interface RelationshipGeneratorConfig {
/**
* Get the number of nodes that need to be created before the relationships can be generated and created.
*
* @return number of nodes for this configuration.
*/
int getNumberOfNodes();
/**
* @return true if the config is valid.
*/
boolean isValid();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy