Currently, I am dealing with several input fields. Let's take the example of an input field named "search". My goal is to filter the results of an object when someone types into that field; however, I prefer to perform this filtration on the server side rather than the client side. Considering the large number of records in my database, performing filtering on the client side may significantly slow down the process. Additionally, I am interested in implementing pagination using AngularJS. Could you provide any advice or suggest a direction for me to follow?
I am utilizing MongoDB as my database store.