Let's say I have an entity called "Entity" that has three properties - "Id", "Name" and "Number".
Using AngularJS, how can I use $http.get to send a GET request for only the objects with a specific "Number"? For example, out of all the objects in that entity, I only want to GET the objects with the number 20. How can I do that?
Thank you!