@Repository
interface LabelInfoRepository : ReactiveMongoRepository<LabelInfo, ObjectId>

Repository for mapping of a single label from neo4j to GitHub

Functions

Link copied to clipboard
abstract fun <S : LabelInfo?> count(example: Example<S?>?): Mono<Long?>?
abstract fun count(): Mono<Long?>?
Link copied to clipboard
abstract fun delete(entity: LabelInfo?): Mono<Void?>?
Link copied to clipboard
abstract fun deleteAll(): Mono<Void?>?
abstract fun deleteAll(entities: Iterable<out LabelInfo?>?): Mono<Void?>?
abstract fun deleteAll(entityStream: Publisher<out LabelInfo?>?): Mono<Void?>?
Link copied to clipboard
abstract fun deleteAllById(ids: Iterable<out ObjectId?>?): Mono<Void?>?
Link copied to clipboard
abstract fun deleteById(id: ObjectId?): Mono<Void?>?
abstract fun deleteById(id: Publisher<ObjectId?>?): Mono<Void?>?
Link copied to clipboard
abstract fun <S : LabelInfo?> exists(example: Example<S?>?): Mono<Boolean?>?
Link copied to clipboard
abstract fun existsById(id: ObjectId?): Mono<Boolean?>?
abstract fun existsById(id: Publisher<ObjectId?>?): Mono<Boolean?>?
Link copied to clipboard
abstract fun <S : LabelInfo?> findAll(example: Example<S?>?): Flux<S?>?
abstract fun <S : LabelInfo?> findAll(example: Example<S?>?, sort: Sort?): Flux<S?>?
abstract fun findAll(): Flux<LabelInfo?>?
abstract fun findAll(sort: Sort?): Flux<LabelInfo?>?
Link copied to clipboard
abstract fun findAllById(ids: Iterable<ObjectId?>?): Flux<LabelInfo?>?
abstract fun findAllById(idStream: Publisher<ObjectId?>?): Flux<LabelInfo?>?
Link copied to clipboard
abstract fun <S : LabelInfo?, R : Any?, P : Publisher<R?>?> findBy(example: Example<S?>?, queryFunction: Function<FluentQuery.ReactiveFluentQuery<S?>?, P?>?): P?
Link copied to clipboard
abstract fun findById(id: ObjectId?): Mono<LabelInfo?>?
abstract fun findById(id: Publisher<ObjectId?>?): Mono<LabelInfo?>?
Link copied to clipboard
abstract suspend fun findByImsProjectAndGithubId(imsProject: String, githubId: String): LabelInfo?

Lookup to find the mapping given a GitHub id

Link copied to clipboard
abstract suspend fun findByImsProjectAndLocalName(imsProject: String, localName: String): LabelInfo?

Lookup to find the mapping given a neo4j id

Link copied to clipboard
abstract fun <S : LabelInfo?> findOne(example: Example<S?>?): Mono<S?>?
Link copied to clipboard
abstract fun <S : LabelInfo?> insert(entity: S?): Mono<S?>?
abstract fun <S : LabelInfo?> insert(entities: Iterable<S?>?): Flux<S?>?
abstract fun <S : LabelInfo?> insert(entities: Publisher<S?>?): Flux<S?>?
Link copied to clipboard
abstract fun <S : LabelInfo?> save(entity: S?): Mono<S?>?
Link copied to clipboard
abstract fun <S : LabelInfo?> saveAll(entities: Iterable<S?>?): Flux<S?>?
abstract fun <S : LabelInfo?> saveAll(entityStream: Publisher<S?>?): Flux<S?>?