guestCredentialsV2
Get Guest OS credentials.
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. |
| filter | [GuestOsCredentialFilterInput!] | Filter for Guest OS credentials. |
| sortBy | GuestOsCredentialSortBy | Sort Guest OS credentials. |
Returns
Sample
{
"data": {
"guestCredentialsV2": {
"nodes": [
[
{
"description": "example-string",
"domain": "example-string",
"id": "example-string",
"username": "example-string"
}
]
],
"pageInfo": {
"endCursor": "example-string",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "example-string"
}
}
}
}