listO365Apps
Lists the O365 apps.
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. |
| o365AppFilters (required) | [AppFilter!]! | |
| o365AppSortByParam | AppSortByParam |
Returns
Sample
{
"data": {
"listO365Apps": {
"nodes": [
[
{
"addedAt": "2024-01-01T00:00:00.000Z",
"appAuthStatus": "FULLY_AUTHENTICATED",
"appAuthVersion": 0,
"appId": "example-string",
"appOwner": "example-string",
"appType": "example-string"
}
]
],
"pageInfo": {
"endCursor": "example-string",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "example-string"
}
}
}
}