What is the graph query to read users from AAD that are rooms and match a particular room type for example Conference Rooms, Reserved Space?
For example:
On trying the above query, I see UnsupportedQuery error.
Set the ConsistencyLevel header to eventual
.
Then your query
https://graph.microsoft.com/v1.0/users?$count=true&$search="displayName:room"&$filter=endsWith(mail,'tenant.com')&$orderBy=displayName&$select=id,displayName,mail
should work
Resources: