# N-able GraphQL Operation
query OrganizationSearch (
$first: Int = 20,
$after: String,
$orderBy: [OrganizationOrderByInput!],
$where: OrganizationWhereInput
) {
organizationSearch(
first: $first
after: $after
orderBy: $orderBy
where: $where
) {
# organizationSearch fields
}
}