A municipal Intersight client must retrieve only the server named library-r720. Which query option narrows the GET on the server?
Select an answer to reveal the explanation.
Short Explanation
Think of $filter as telling the clerk which drawer to open before mailing the box—Intersight applies OData on the server so you never ship the whole warehouse.
Full Explanation
Constructed Intersight retrieves add $filter (Name eq '…', Serial eq '…', or tag lambdas) so the response is already narrowed. Pulling everything and filtering in Python works as code but is a poor API retrieve. Syntax is Intersight OData query options, not SQL, and $expand hops related objects rather than substituting for filter.