INPUT_OBJECT

InsightFilter

Input parameter for insights query

link GraphQL Schema definition

  • input InsightFilter {
  • # Query Insight based on the title of insights
  • descriptionContains: String
  • # Filter insights by entities
  • entityId: [EntityId!]
  • # Query Insight based on the entity type
  • entityType: [String!]
  • # Include insights from findings, default: false
  • findingInsights: Boolean!
  • # If set to true only return insights with with faulty observation
  • observationIsFault: Boolean!
  • # If set to true returns insights originating at the entity, otherwise returns
  • # insights impacting entity.
  • # entityId field is used for filtering with this flag
  • originating: Boolean!
  • # Query Insight based on the resource types
  • resourceKinds: [String!]
  • # Query Insight based on the source of the observation
  • source: [ObservationSource!]
  • # Include insights with matching tag search criteria
  • tagSearch: InsightTagSearchCriteria
  • }