INPUT_OBJECT

UserAuditFilter

Description

Filter user audit data.

link GraphQL Schema definition

  • input UserAuditFilter {
  • # Filter by audit severity.
  • auditSeverity: [AuditSeverity!]
  • # Filter by audit status.
  • auditStatus: [AuditStatus!]
  • # Filter by audit type.
  • auditType: [AuditType!]
  • # Filter by audit object type.
  • auditObjectType: [AuditObjectType!]
  • # Filter by cluster UUIDs.
  • clusterId: [UUID!]
  • # Filter by object IDs.
  • objectIds: [String!]
  • # Filter by object forever IDs.
  • objectFids: [String!]
  • # Filter audits that have time after the specified value.
  • timeGt: DateTime
  • # Filter audits that have time before the specified value.
  • timeLt: DateTime
  • # Filter audits that have a user note attached.
  • hasUserNote: Boolean
  • # Filter by search term in audit message.
  • searchTerm: String
  • # Filter by organization ID.
  • orgIds: [String!]
  • }

link Require by