# N-able GraphQL Operation
query AuditRecordSearch (
$first: Int = 20,
$after: String,
$orderBy: [AuditRecordOrderByInput!],
$where: AuditRecordWhereInput,
$inOrganization: ID,
$inRegion: RegionInput
) {
auditRecordSearch(
first: $first
after: $after
orderBy: $orderBy
where: $where
inOrganization: $inOrganization
inRegion: $inRegion
) {
# auditRecordSearch fields
}
}