get Update By Id

@Query(value = ""SELECT * FROM " + UPDATES_KEY + " WHERE " + PROJECT_KEY + "=:" + PROJECT_KEY + " AND " + IDENTIFIER_KEY + "=:" + IDENTIFIER_KEY", nativeQuery = true )
abstract fun getUpdateById(@Param(value = "project") projectId: String, @Param(value = "id") updateId: String): Update

Method to execute the query to select a Update by its id

Return

the project update as Update

Parameters

projectId

The project identifier

updateId

The update identifier to fetch