# 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
}
}