Types

Link copied to clipboard
@NoRepositoryBean
interface GropiusRepository<T : Any, ID : Any> : ReactiveNeo4jRepository<T, ID> , ReactiveCypherdslConditionExecutor<T>

Meta-repository that included ReactiveNeo4jRepository and ReactiveCypherdslConditionExecutor

Functions

Link copied to clipboard
suspend fun <T : Any> GropiusRepository<T, String>.findAllById(ids: Iterable<ID>): List<T>

Wrapper for ReactiveCrudRepository.findAllById which unwraps the provided ids and awaits the result

Link copied to clipboard
suspend fun <T : Any> GropiusRepository<T, String>.findById(id: ID): T

Wrapper for ReactiveCrudRepository.findById which unwraps the provided id and awaits the result