public class C extends Object
| Constructor and Description |
|---|
C() |
| Modifier and Type | Method and Description |
|---|---|
static EXProperty<CollectFrom> |
COLLECT()
JCYPHER
collect properties from a collection of property containers (nodes or relations), ignore NULL s
e.g. ...
|
static CTerminal |
CREATE(IClause[] clauses)
JCYPHER
create a collection using a list of clauses.
|
static ExtractExpression |
EXTRACT()
JCYPHER
go through a collection, run an expression on every element of the collection,
and return the results as a collection of these values e.g. ...
|
static CFrom<CWhere> |
FILTER()
JCYPHER
return all the elements in a collection that hold true for a predicate expression
e.g. ...
|
static CFrom<ReduceTo> |
REDUCE()
JCYPHER
run an expression against individual elements of a collection
and store the result of the expression in an accumulator
e.g. ...
|
static Collection |
TAIL()
JCYPHER
return all but the first element in a collection
e.g. ...
|
static CTerminal |
TAIL(JcCollection collection)
JCYPHER
return all but the first element in a collection
e.g. ...
|
public static EXProperty<CollectFrom> COLLECT()
public static CTerminal CREATE(IClause[] clauses)
C.CREATE(new IClause[]{
CASE.result(),
WHEN.valueOf(n.property("firstName")).EQUALS("John"),
NATIVE.cypher("[1]"),
ELSE.perform(),
NATIVE.cypher("[]"),
END.caseXpr()
})public static ExtractExpression EXTRACT()
public static CFrom<CWhere> FILTER()
public static CFrom<ReduceTo> REDUCE()
public static Collection TAIL()
public static CTerminal TAIL(JcCollection collection)
Copyright © 2016. All rights reserved.