public interface GraphRepository<T> extends Neo4jRepository<T,Long>
Repository.| Modifier and Type | Method and Description |
|---|---|
Iterable<T> |
findAll() |
Iterable<T> |
findAll(int depth) |
Iterable<T> |
findAll(Iterable<Long> ids) |
Iterable<T> |
findAll(Iterable<Long> ids,
int depth) |
Iterable<T> |
findAll(Iterable<Long> ids,
Sort sort) |
Iterable<T> |
findAll(Iterable<Long> ids,
Sort sort,
int depth) |
Page<T> |
findAll(Pageable pageable)
Returns a
Page of entities meeting the paging restriction provided in the Pageable object. |
Page<T> |
findAll(Pageable pageable,
int depth)
Returns a
Page of entities meeting the paging restriction provided in the Pageable object. |
Iterable<T> |
findAll(Sort sort) |
Iterable<T> |
findAll(Sort sort,
int depth) |
T |
findOne(Long id,
int depth) |
<S extends T> |
save(Iterable<S> entities,
int depth) |
<S extends T> |
save(S s,
int depth) |
<S extends T> S save(S s, int depth)
save in interface Neo4jRepository<T,Long><S extends T> Iterable<S> save(Iterable<S> entities, int depth)
save in interface Neo4jRepository<T,Long>Iterable<T> findAll()
findAll in interface CrudRepository<T,Long>findAll in interface Neo4jRepository<T,Long>Iterable<T> findAll(Sort sort)
findAll in interface Neo4jRepository<T,Long>findAll in interface PagingAndSortingRepository<T,Long>Iterable<T> findAll(Sort sort, int depth)
findAll in interface Neo4jRepository<T,Long>Iterable<T> findAll(Iterable<Long> ids)
findAll in interface CrudRepository<T,Long>findAll in interface Neo4jRepository<T,Long>Iterable<T> findAll(Iterable<Long> ids, int depth)
findAll in interface Neo4jRepository<T,Long>Iterable<T> findAll(Iterable<Long> ids, Sort sort)
findAll in interface Neo4jRepository<T,Long>Iterable<T> findAll(Iterable<Long> ids, Sort sort, int depth)
findAll in interface Neo4jRepository<T,Long>Page<T> findAll(Pageable pageable)
Page of entities meeting the paging restriction provided in the Pageable object.
Page.getTotalPages() returns an estimation of the total number of pages and should not be relied upon for accuracy.findAll in interface Neo4jRepository<T,Long>findAll in interface PagingAndSortingRepository<T,Long>pageable - Page<T> findAll(Pageable pageable, int depth)
Page of entities meeting the paging restriction provided in the Pageable object.
Page.getTotalPages() returns an estimation of the total number of pages and should not be relied upon for accuracy.findAll in interface Neo4jRepository<T,Long>pageable - depth - Copyright © 2011-2015–2017 Pivotal Software, Inc.. All rights reserved.