All Downloads are FREE. Search and download functionalities are using the official Maven repository.

apoc.generate.relationship.SocialNetworkRelationshipCreator Maven / Gradle / Ivy

package apoc.generate.relationship;

/**
 * A {@link RelationshipCreator} that only creates relationship of type FRIEND_OF and assigns no properties to those
 * relationships.
 */
public class SocialNetworkRelationshipCreator extends DefaultRelationshipCreator {

    public SocialNetworkRelationshipCreator() {
        super("FRIEND_OF");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy