get Changelogs

@Query(value = "SELECT * FROM " + CHANGELOGS_KEY + " WHERE " + CHANGELOG_OWNER_KEY + "=:" + CHANGELOG_OWNER_KEY + " ORDER BY " + CHANGELOG_TIMESTAMP_KEY + " DESC ", nativeQuery = true )
abstract fun getChangelogs(@Param(value = "owner") owner: String, pageable: Pageable): List<Changelog>

Method to execute the query to select the list of a Changelog

Return

the list of changelogs as List of Changelog

Parameters

owner

The owner of the changelogs

pageable

The parameters to paginate the query