Summary
List cmdlets return only the first page; add -All and a truncation warning to match the published SDK.
What's working now
List cmdlets correctly return the first page of results with the query options the endpoint declares (-Filter, -Top, and so on).
How can we make it better
@odata.nextLink is ignored, so scripts silently receive partial data. Add an -All switch that follows nextLink until the collection is exhausted, and emit a warning when more pages exist and -All was not passed. The design is already approved in the design spec.
Summary
List cmdlets return only the first page; add -All and a truncation warning to match the published SDK.
What's working now
List cmdlets correctly return the first page of results with the query options the endpoint declares (-Filter, -Top, and so on).
How can we make it better
@odata.nextLinkis ignored, so scripts silently receive partial data. Add an -All switch that follows nextLink until the collection is exhausted, and emit a warning when more pages exist and -All was not passed. The design is already approved in the design spec.