MN-Dheeraj

Results 1 issues of MN-Dheeraj

I am using Graph client SDK (com.microsoft.graph.microsoft-graph:6.2.1) to read all messages in a channel. Here is my code. ChatMessageCollectionResponse result = getGraphClient().teams().byTeamId(teamsId).channels() .byChannelId(channelId).messages().get(rc -> { rc.queryParameters.top= 50; rc.queryParameters.skip= 0; });...

question