Last active
December 7, 2023 19:48
-
-
Save maisarissi/a3e181677f2fc5de7ce735040c024b73 to your computer and use it in GitHub Desktop.
microsoftgraph-java-v6-count
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int memberCount = graphClient | |
.groups() | |
.byGroupId("Id") | |
.members() | |
.graphUser() | |
.count() //Where applicable to enable the use of $count | |
.get(requestConfiguration -> { | |
requestConfiguration.headers.add("ConsistencyLevel", "Eventual"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment