Luca Spolidoro [MSFT]

Results 21 comments of Luca Spolidoro [MSFT]

@peombwa how's the investigation for added links is going? ![image](https://user-images.githubusercontent.com/2388430/97051785-a3788780-1534-11eb-8b4b-8f0fec68ff96.png) as you know, we would like to add a link in the "Related Links" section that points to a Dev...

Hi @JustinGrote, I'm the PM for the advanced query capabilities on Directory Objects. I feel your frustration, and it's shared also among many other API developers (not just PowerShell users)....

Thank you @WilliamWelsh, I do have access to the codex APIs. I ended up wrapping the APIs myself, they are easy enough.

@benedlore I just published this for you: https://gist.github.com/Licantrop0/115f7f0280e865c69e3849c8a14989dc let me know if you have questions.

Hi @ryanmcalister, unfortunately it's still messing up with it: ![image](https://user-images.githubusercontent.com/2388430/94961071-d5a04780-04a8-11eb-8b20-d6258b99301c.png)

Same issue here! @michael-hawker See https://github.com/microsoftgraph/dotnet-aad-query-sample/blob/main/MsGraphSamples.WinUI/Helpers/AsyncLoadingCollection.cs

The most efficient way available is this: `$groups = Get-MgGroup -ExpandProperty "members($select=id)" -Property "id,displayName" -PageSize 999 -All | Select-Object Id, DisplayName, Members | Where-Object { $_.Members.Count -eq 0 }` now,...

Another constructor on `IncrementalLoadingCollection` would introduce some complexities (e.g. forking between _source and _asyncEnumerable all over the places) and the original class definition `IncrementalLoadingCollection : ObservableCollection, ISupportIncrementalLoading where TSource :...

> thanks for creating this. For information microsoft.graph.subscription,latestSupportedTlsVersion is a false positive, and we should be careful about that aspect when considering the other ones. Yes, I was only comparing...

Please also check `Get-MgUserOauth2PermissionGrant` and `Get-MgServicePrincipalOauth2PermissionGrant`