fillRejectedTag

@Modifying(clearAutomatically = true)
@Query(value = ""UPDATE " + REJECTED_TAGS_KEY + " SET " + COMMENT_KEY + "=:" + COMMENT_KEY + " WHERE " + IDENTIFIER_KEY + "=:" + IDENTIFIER_KEY", nativeQuery = true)
abstract fun fillRejectedTag(@Param(value = "id") rejectedTagId: String, @Param(value = "comment") comment: String)

Method to execute the query to comment an existing RejectedTag

Parameters

rejectedTagId

: the identifier of the rejected tag

comment

: the comment to insert