public interface AggregateStatements
| Modifier and Type | Method and Description |
|---|---|
CypherQuery |
countEdges(String type,
Iterable<Filter> filters)
construct queries to count all relationships with the specified type that match the specified filters
|
CypherQuery |
countEdges(String startLabel,
String relationshipType,
String endLabel)
construct queries to count all single-length paths with the specified start label, relationship type and end label that match the specified filters
|
CypherQuery |
countNodes(Iterable<String> labels)
construct queries to count all nodes with the specified label
|
CypherQuery |
countNodes(String label,
Iterable<Filter> filters)
construct queries to count all nodes with the specified label that match the specified filters
|
CypherQuery countNodes(Iterable<String> labels)
labels - the labels attached to the objectCypherQueryCypherQuery countNodes(String label, Iterable<Filter> filters)
label - the label value to filter onfilters - additional parameters to filter onCypherQueryCypherQuery countEdges(String type, Iterable<Filter> filters)
type - the relationship type to filter onfilters - additional parameters to filter onCypherQueryCypherQuery countEdges(String startLabel, String relationshipType, String endLabel)
startLabel - the start node label to filter onrelationshipType - the type of relationship to filter onendLabel - the end node label to filter onCypherQueryCopyright © 2015–2020 Neo Technology, Inc.. All rights reserved.