I want to filter returned objects (appliations), so that only applications with configured client credentials are returned.
I have made multiple attempts, one of which:
az ad app list --show-mine --filter '~/application?$filter=passwordCredentials/$count ne 0'
I want to use the --filter
OData query, as the filtering is performed server-side, in contrast to using –query, which occurs client-side.
https://learn.microsoft.com/en-us/graph/filter-query-parameter?tabs=http#operators-and-functions-supported-in-filter-expressions
Any ideas?