Skip to content

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

GuestOsCredentialConnection!

Sample

query {
  guestCredentialsV2(first: 10) {
    nodes {
      description
      domain
      id
      username
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "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"
      }
    }
  }
}