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
Python Module Used:- azure-graphrbac
How to use filter option while listing O365 users using following method:- list(filter=None, custom_headers=None, raw=False, **operation_config) ?
We are not able to filter using this:- client.users.list(filter=<display_name>)
The text was updated successfully, but these errors were encountered:
Hi @guptasakshi01 - could you try using syntax along the lines of: filter='startswith(displayName,\'some_name\')'
filter='startswith(displayName,\'some_name\')'
Sorry, something went wrong.
As @annatisch says, filter will use the RestAPI syntax as a string here: https://msdn.microsoft.com/Library/Azure/Ad/Graph/api/users-operations#GetUsers https://msdn.microsoft.com/Library/Azure/Ad/Graph/howto/azure-ad-graph-api-supported-queries-filters-and-paging-options#filter
Thanks,
No branches or pull requests
Python Module Used:- azure-graphrbac
How to use filter option while listing O365 users using following method:-
list(filter=None, custom_headers=None, raw=False, **operation_config) ?
We are not able to filter using this:-
client.users.list(filter=<display_name>)
The text was updated successfully, but these errors were encountered: