org.neo4j.cypher.export.CypherResultSubGraph 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 org.neo4j.cypher.export;
import apoc.util.Util;
import apoc.util.collection.Iterables;
import org.neo4j.graphdb.*;
import org.neo4j.graphdb.schema.ConstraintDefinition;
import org.neo4j.graphdb.schema.IndexDefinition;
import org.neo4j.graphdb.schema.IndexType;
import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;
public class CypherResultSubGraph implements SubGraph {
private final SortedMap nodes = new TreeMap<>();
private final SortedMap relationships = new TreeMap<>();
private final Collection
© 2015 - 2024 Weber Informatics LLC | Privacy Policy