public interface QueryStatements
| Modifier and Type | Method and Description |
|---|---|
Query |
findAll()
construct a query to fetch all objects
|
Query |
findAll(Collection<Long> ids,
int depth)
construct a query to fetch all objects with the specified ids
|
Query |
findAllByType(String type,
Collection<Long> ids,
int depth)
construct a query to fetch all objects with the specified ids
|
Query |
findByProperties(String type,
Filters filters,
int depth)
construct queries to fetch all objects with the specified label and property
|
Query |
findByType(String type,
int depth)
construct queries to fetch all objects with the specified label or relationship type
|
Query |
findOne(Long id,
int depth)
construct a query to fetch a single object with the specified id
|
Query findOne(Long id, int depth)
id - the id of the object to finddepth - the depth to traverse for any related objectsQuery findAll()
Query findAll(Collection<Long> ids, int depth)
ids - the ids of the objects to finddepth - the depth to traverse for any related objectsQuery findAllByType(String type, Collection<Long> ids, int depth)
type - the label attached to the object, or the relationship typeids - the ids of the objects to finddepth - the depth to traverse for any related objectsQuery findByType(String type, int depth)
type - the label attached to the object, or the relationship typedepth - the depth to traverse for related objectsQuery findByProperties(String type, Filters filters, int depth)
type - the label value or relationship type to filter onfilters - parameters to filter ondepth - the depth to traverse for related objectsCopyright © 2015 Neo Technology, Inc.. All rights reserved.