I have the following code to list all the rooms defined in my demo tenant:
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var room = await graphClient.Places
.Request()
.GetAsync();
Currently, I see no response as there are no results on running this query.
How do I add a few places in my demo tenant so that this query returns some results?
