Package org.neo4j.cypherdsl.query.clause

Examples of org.neo4j.cypherdsl.query.clause.CreateClause


        this.forEachClause = forEachClause;
    }

    public ForEachStatement create( PathExpression... paths )
    {
        return new ForEachStatement( forEachClause.add( new CreateClause( asList( paths ) ) ) );
    }
View Full Code Here


    }

    @Override
    public ForEachStatement create( Iterable<PathExpression> paths )
    {
        return new ForEachStatement( forEachClause.add( new CreateClause( paths ) ) );
    }
View Full Code Here

TOP

Related Classes of org.neo4j.cypherdsl.query.clause.CreateClause

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.