We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
microsoft.users.any(userPrincipalName == /emergency/) emrgID = microsoft.users.where(userPrincipalName == /emergency/).map(id) microsoft.rolemanagement.roleDefinitions.where(displayName == "Global Administrator").all(assignments.any(principalId == emrgID))
this query has been found to be very slow in large environments. we need to investigate how to improve it.
The text was updated successfully, but these errors were encountered:
two possible ways to speed this up:
Sorry, something went wrong.
being able to query
emrgID = microsoft.users(userPrincipalName == /emergency/).map(id) microsoft.rolemanagement.roleDefinitions(displayName == "Global Administrator").all(assignments.any(principalId == emrgID))
would make this easier
No branches or pull requests
this query has been found to be very slow in large environments. we need to investigate how to improve it.
The text was updated successfully, but these errors were encountered: