auditRecordSearch
query
Retrieve a list of Audit Records. AuditRecordConnection!
Arguments
first
Int
default: 20
Page size.
after
String
Cursor for the last page item.
orderBy
[AuditRecordOrderByInput!]
Sort order.
where
AuditRecordWhereInput
Filtering.
inOrganization
ID
Can be any Organization ID or can be omitted.
inRegion
RegionInput
Restricts the query to a specific region regardless of the `inOrganization` specified.
Example Operation
# 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
  }
}