apoc.meta.ConstraintTracker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc-common Show documentation
Show all versions of apoc-common Show documentation
Data types package for Neo4j Procedures
package apoc.meta;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class ConstraintTracker {
// The following maps are (label|rel-type)/constraintdefinition entries
public static final Map> relConstraints = new HashMap<>(20);
public static final Map> nodeConstraints = new HashMap<>(20);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy