assetSearch
query
Retrieve a list of assets. AssetConnection!
Arguments
first
Int
default: 20
Page size.
after
String
Cursor for the last page item.
where
AssetWhereInput
Filtering.
orderBy
[AssetOrderByInput!]
Sort order.
inOrganizations
[ID!]
Which Organizations to search.
Example Operation
# N-able GraphQL Operation

query AssetSearch (
  $first: Int = 20,
  $after: String,
  $where: AssetWhereInput,
  $orderBy: [AssetOrderByInput!],
  $inOrganizations: [ID!]
) {
  assetSearch(
    first: $first
    after: $after
    where: $where
    orderBy: $orderBy
    inOrganizations: $inOrganizations
  ) {
    # assetSearch fields
  }
}