| Package | Description |
|---|---|
| iot.jcypher.query.api.pattern | |
| iot.jcypher.query.factories.clause | |
| iot.jcypher.query.factories.xpression |
| Modifier and Type | Method and Description |
|---|---|
Node |
Node.label(String label)
JCYPHER
set a label to match or create nodes with that label
e.g.
|
static Node |
XFactory.node() |
Node |
Relation.node()
JCYPHER
match or create (depends on the clause) nodes connected to the relation
e.g.
|
Node |
Path.node()
JCYPHER
match or create (depends on the clause) nodes as starting points of the path
e.g.
|
static Node |
XFactory.node(JcNode jcNode) |
Node |
Relation.node(JcNode jcNode)
JCYPHER
match or create (depends on the clause) nodes connected to the relation,
make them accessible by a JcNode element later on in the query e.g.
|
Node |
Path.node(JcNode jcNode)
JCYPHER
match or create (depends on the clause) nodes as starting points of the path,
make them accessible by a JcNode element later on in the query e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static Node |
OPTIONAL_MATCH.node()
JCYPHER
match nodes
e.g.
|
static Node |
MERGE.node()
JCYPHER
merge (match or create if not exists) a node
e.g.
|
static Node |
MATCH.node()
JCYPHER
match nodes
e.g.
|
static Node |
CREATE_UNIQUE.node()
JCYPHER
create a node
e.g.
|
static Node |
CREATE.node()
JCYPHER
create a node
e.g.
|
static Node |
OPTIONAL_MATCH.node(JcNode node)
JCYPHER
match nodes, make them accessible by a JcNode element later on in the query
e.g.
|
static Node |
MERGE.node(JcNode jcNode)
JCYPHER
merge (match or create if not exists) a node, make it accessible by a JcNode element later on in the query
e.g.
|
static Node |
MATCH.node(JcNode node)
JCYPHER
match nodes, make them accessible by a JcNode element later on in the query
e.g.
|
static Node |
CREATE_UNIQUE.node(JcNode jcNode)
JCYPHER
create a node, make it accessible by a JcNode element later on in the query
e.g.
|
static Node |
CREATE.node(JcNode jcNode)
JCYPHER
create a node, make it accessible by a JcNode element later on in the query
e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static Node |
X.node()
JCYPHER
match nodes
e.g.
|
static Node |
X.node(JcNode node)
JCYPHER
match nodes, make them accessible by a JcNode element later on in the query
e.g.
|
Copyright © 2016. All rights reserved.