| Package | Description |
|---|---|
| org.neo4j.ogm.cypher | |
| org.neo4j.ogm.session | |
| org.neo4j.ogm.session.delegates | |
| org.neo4j.ogm.session.request.strategy | |
| org.neo4j.ogm.session.request.strategy.impl |
| Modifier and Type | Method and Description |
|---|---|
Filters |
Filters.add(Filter... additionalFilters) |
Filters |
Filters.add(Filter filter) |
Filters |
Filters.add(FilterFunction function) |
Filters |
Filters.add(Iterable<Filter> additionalFilters) |
Filters |
Filter.and(Filter filter)
Convenience method to chain filters using
BooleanOperator.AND. |
Filters |
Filters.and(Filter filter)
Convenience method to add a filter using
BooleanOperator.AND. |
Filters |
Filter.or(Filter filter)
Convenience method to chain filters using
BooleanOperator.OR. |
Filters |
Filters.or(Filter filter)
Convenience method to add a filter using
BooleanOperator.OR. |
| Modifier and Type | Method and Description |
|---|---|
<T> Collection<T> |
Neo4jSession.loadAll(Class<T> type,
Filters filters) |
<T> Collection<T> |
Session.loadAll(Class<T> type,
Filters filters)
Load all entities of type, filtered by filters, with default depth = 1.
|
<T> Collection<T> |
Neo4jSession.loadAll(Class<T> type,
Filters filters,
int depth) |
<T> Collection<T> |
Session.loadAll(Class<T> type,
Filters filters,
int depth)
Load all entities of type, filtered by filters.
|
<T> Collection<T> |
Neo4jSession.loadAll(Class<T> type,
Filters filters,
Pagination pagination) |
<T> Collection<T> |
Session.loadAll(Class<T> type,
Filters filters,
Pagination pagination)
Load all entities of type, filtered by filters, with default depth = 1.
|
<T> Collection<T> |
Neo4jSession.loadAll(Class<T> type,
Filters filters,
Pagination pagination,
int depth) |
<T> Collection<T> |
Session.loadAll(Class<T> type,
Filters filters,
Pagination pagination,
int depth)
Load all entities of type, filtered by filters.
|
<T> Collection<T> |
Neo4jSession.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder) |
<T> Collection<T> |
Session.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder)
Load all entities of type, filtered by filters, with default depth = 1.
|
<T> Collection<T> |
Neo4jSession.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder,
int depth) |
<T> Collection<T> |
Session.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder,
int depth)
Load all entities of type, filtered by filters.
|
<T> Collection<T> |
Neo4jSession.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder,
Pagination pagination) |
<T> Collection<T> |
Session.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder,
Pagination pagination)
Load all entities of type, filtered by filters, with default depth = 1.
|
<T> Collection<T> |
Neo4jSession.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder,
Pagination pagination,
int depth) |
<T> Collection<T> |
Session.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder,
Pagination pagination,
int depth)
Load all entities of type, filtered by filters.
|
| Modifier and Type | Method and Description |
|---|---|
<T> Collection<T> |
LoadByTypeDelegate.loadAll(Class<T> type,
Filters filters) |
<T> Collection<T> |
LoadByTypeDelegate.loadAll(Class<T> type,
Filters filters,
int depth) |
<T> Collection<T> |
LoadByTypeDelegate.loadAll(Class<T> type,
Filters filters,
Pagination pagination) |
<T> Collection<T> |
LoadByTypeDelegate.loadAll(Class<T> type,
Filters filters,
Pagination pagination,
int depth) |
<T> Collection<T> |
LoadByTypeDelegate.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder) |
<T> Collection<T> |
LoadByTypeDelegate.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder,
int depth) |
<T> Collection<T> |
LoadByTypeDelegate.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder,
Pagination pagination) |
<T> Collection<T> |
LoadByTypeDelegate.loadAll(Class<T> type,
Filters filters,
SortOrder sortOrder,
Pagination pagination,
int depth)
Loads all objects of a given
type. |
| Modifier and Type | Method and Description |
|---|---|
PagingAndSortingQuery |
QueryStatements.findByType(String type,
Filters filters,
int depth)
construct queries to fetch all objects with the specified label that match the specified filters
|
| Modifier and Type | Method and Description |
|---|---|
PagingAndSortingQuery |
RelationshipQueryStatements.findByType(String type,
Filters parameters,
int depth) |
PagingAndSortingQuery |
NodeQueryStatements.findByType(String label,
Filters parameters,
int depth) |
Copyright © 2015–2020 Neo Technology, Inc.. All rights reserved.