| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
_MATCH_NODE_QUERY |
" MATCH (n) WHERE id(n) = {id} " |
public static final String |
_MATCH_REL_QUERY |
" START r=rel({id}) " |
public static final String |
_QUERY_RETURN_NODE |
" RETURN id(n) as id, labels(n) as labels, n as properties" |
public static final String |
_QUERY_RETURN_REL |
" RETURN id(r) as id, type(r) as type, r as properties, id(startNode(r)) as start, id(endNode(r)) as end" |
public static final String |
GET_NODE_QUERY |
" MATCH (n) WHERE id(n) = {id} RETURN id(n) as id, labels(n) as labels, n as properties" |
public static final String |
GET_REL_QUERY |
" START r=rel({id}) RETURN id(r) as id, type(r) as type, r as properties, id(startNode(r)) as start, id(endNode(r)) as end" |
public static final String |
GET_REL_TYPES_QUERY |
" MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN distinct type(r) as relType" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
_QUERY_RETURN_NODE |
" RETURN id(n) as id, labels(n) as labels, n as data" |
public static final String |
GET_REL_TYPES_QUERY |
"MATCH (n)-[r]-() WHERE id(n) = {id} RETURN distinct type(r) as relType" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
NEO4J_DRIVER_PROPERTY |
"org.neo4j.rest.driver" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
NODE |
"node" |
public static final String |
NODE_AUTO_INDEX_NAME |
"node_auto_index" |
public static final String |
RELATIONSHIP |
"relationship" |
public static final String |
RELATIONSHIP_AUTO_INDEX_NAME |
"relationship_auto_index" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
CONFIG_BATCH_TRANSACTION |
"org.neo4j.rest.batch_transaction" |
public static final String |
CONFIG_LOG_REQUESTS |
"org.neo4j.rest.logging_filter" |
public static final String |
CONFIG_PREFIX |
"org.neo4j.rest." |
public static final String |
CONFIG_STREAM |
"org.neo4j.rest.stream" |
public static final String |
IGNORE_SSL_HANDSHAKE |
"org.neo4j.rest.ignore_ssl_handshake" |
public static final String |
WRITE_THREADS |
"write_threads" |
Copyright © 2011-2015–2016 Pivotal Software, Inc.. All rights reserved.