ErrorRepo
interface ErrorRepo : JpaRepository<TaskErrorEntity, Long> , JpaSpecificationExecutor<TaskErrorEntity>
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@Modifying
@Query(value = "delete from TaskErrorEntity e where e.task.id = :taskId and e.ownerTenantId = :tenantId")
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun findAll(spec: Specification<TaskErrorEntity?>?, pageable: Pageable?): Page<TaskErrorEntity?>?
Link copied to clipboard
Link copied to clipboard
abstract fun <S : TaskErrorEntity?, R : Any?> findBy(spec: Specification<TaskErrorEntity?>?, queryFunction: Function<FluentQuery.FetchableFluentQuery<S?>?, R?>?): R?
Link copied to clipboard
Link copied to clipboard
@Query(value = "select e from TaskErrorEntity e where e.task.id = :taskId and e.ownerTenantId = :tenantId")
Link copied to clipboard
@Query(value = "select e from TaskErrorEntity e where e.task.id in :taskIds and e.ownerTenantId = :tenantId")
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard