In the website that i am creating i have projects that are created by the customer and proposals from the experts for these projects. In a initial page the client chooses which of the projects he want to see the proposals. Then he is redirected to a dynamic page which has all proposals for that project. My problem is that i am not able to filter only the proposals for this project. All proposals are shown.
This is how i move among proposals:
This is the code to move among pages using the wix internal link (bellow). Should i use some code?

Thanks a lot for your help!!
GOS Tjhanks a lot! The pagination helped me very much! Now i have a new problem. My pagination is showing just one of the the 3 values that it should, even when i clear the filter for the project. My code below:
$w(“#dynamicDataset”).onReady( () => {
let user = wixUsers.currentUser;
user.getEmail()
.then( (email) => {
userEmail = email;
wixData.query(“FiltroOfertas”) // this is a filter where i put the choice of the project that the cliente made to analyze
.eq(“email”, userEmail)
.find()
.then( (results) => {
demanda = results.items[0].idProjeto //this is the project ID
nome = results.items[0].title
$w(‘#text30’).text = nome
$w(“#dynamicDataset”).setFilter( wixData.filter() // here is the problem. I filter this field and i should have 3 proposals (lets say A, B, C), but i see 1 (B)
.eq(‘demanda’, demanda));
})
. catch ( (err) => {
let errorMsg = err;
});
});
});
PS: i am putting the pagination directly in the dynamic database which i want to show the data