You should filter your items that come from back end and then show them up in your list.
Create a field in your database as selected with default value of 0.
Update selected items to 1 or any other number then :
const result = items.filter(item=> item.selected != 0 );