adGroupMembers
Objects that match the specifications of the AD group.
Arguments
| Argument | Type | Description |
|---|---|---|
| first | Int | Returns the first n elements from the list. |
| after | String | Returns the elements in the list that occur after the specified cursor. |
| orgId (required) | UUID! | Org UUID. |
| adGroupSpec (required) | AdGroupSpecInput! | The Azure Active Directory group spec. |
Returns
Sample
{
"data": {
"adGroupMembers": {
"nodes": [
[
{
"name": "example-string",
"naturalId": "example-string",
"pdl": "example-string",
"userPrincipalName": "example-string"
}
]
],
"pageInfo": {
"endCursor": "example-string",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "example-string"
}
}
}
}