Which particular filter query string setting for MSGraph API can be used in order to ask MSGraph to handle server-side not including these HealthMailbox'es?
I'd initially tried doing this with a startswith for email address of "HealthMailbox"... but.. you apparently they don't have support to be able to say "NOT StartsWith" in a filter of Users objects, and answer given was that StartsWith is something you'd have to implement client-side.
Which I was able to do. But it not the right way to do it, as other future system derived names could spring up later on. So I ws looking for another property I could perhaps based the filtering of the Query upon that could detect the difference between regular users accounts... and these special accounts the system itselfs creates.
I see this "creationType" property which says it has "Member" or "Guest". But I'm kind of thinking that want work because if you're the system and you made an account, you certainly wouldn't consider it "Guest", right? So that would seem to take this away as a means of separating out these "HealthMailbox" accounts with some kind of filter query that can handle the task all on the server-side of weeding out these "HealthMailbox" accounts.
So any help in that regard would be appreciated, Thank you.