@NoRepositoryBean public interface GraphRepository<T> extends PagingAndSortingRepository<T,Long>
| 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) |
Page<T> |
findAll(Pageable pageable,
int depth) |
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)
Iterable<T> findAll(Sort sort)
findAll in interface PagingAndSortingRepository<T,Long>Iterable<T> findAll(Iterable<Long> ids)
findAll in interface CrudRepository<T,Long>Page<T> findAll(Pageable pageable)
findAll in interface PagingAndSortingRepository<T,Long>Copyright © 2011–2017 Pivotal Software, Inc.. All rights reserved.