deleteRelease

@Modifying(clearAutomatically = true)
@Query(value = ""DELETE FROM " + RELEASES_KEY + " WHERE " + IDENTIFIER_KEY + "=:" + IDENTIFIER_KEY", nativeQuery = true)
abstract fun deleteRelease(@Param(value = "id") releaseId: String)

Method to execute the query to delete an existing Release

Parameters

releaseId

: the identifier of the release to delete