get Unread Changelogs Count

@Query(value = ""SELECT COUNT(*) FROM " + CHANGELOGS_KEY + " WHERE " + CHANGELOG_OWNER_KEY + "=:" + CHANGELOG_OWNER_KEY + " AND " + CHANGELOG_READ_KEY + "=" + false", nativeQuery = true )
abstract fun getUnreadChangelogsCount(@Param(value = "owner") owner: String): Long

Method to execute the query to count the Changelog yet to read

Return

the count of changelogs yet to read

Parameters

owner

The owner of the changelogs