Hello @AleStendardo!
You can get items with pnpjs. Please see the example with filtering below and also have a look at this article
pnp.sp.web.lists.getByTitle("Test").items.select("Title,ID").filter("Title eq 'Test' and ID eq '10'").getAll().then(function(allItems){
console.log(allItems);
});.