# N-able GraphQL Operation
query ScriptSearch (
$first: Int = 20,
$after: String,
$where: ScriptWhereInput,
$orderBy: [ScriptOrderByInput!],
$inOrganizations: [ID!]!
) {
scriptSearch(
first: $first
after: $after
where: $where
orderBy: $orderBy
inOrganizations: $inOrganizations
) {
# scriptSearch fields
}
}