INPUT_OBJECT

ActivitySeriesFilter

Description

Filters for list of event series.

link GraphQL Schema definition

  • input ActivitySeriesFilter {
  • # Filter by last activity status.
  • lastActivityStatus: [EventStatus!]
  • # Filter by last activity type.
  • lastActivityType: [EventType!]
  • # Filter by severity of the activity.
  • severity: [EventSeverity!]
  • # Filter by object name.
  • objectName: String
  • # Filter by object type.
  • objectType: [EventObjectType!]
  • # Filter activities having start time after the specified value.
  • startTimeGt: DateTime
  • # Filter activities having start time before the specified value.
  • startTimeLt: DateTime
  • # Filter activites having last updated time after the specified value.
  • lastUpdatedTimeGt: DateTime
  • # Filter activites having last updated time before than the specified value.
  • lastUpdatedTimeLt: DateTime
  • # Filter by cluster UUID.
  • clusterId: [UUID!]
  • # Filter by cluster type.
  • clusterType: [EventClusterType!]
  • # Filter by object fid.
  • objectFid: [UUID!]
  • # Filter by ancestor ID.
  • ancestorId: UUID
  • # Filter by search term.
  • searchTerm: String
  • # Filter by organization ID.
  • orgIds: [String!]
  • }