INPUT_OBJECT

InsightFilter

Input parameter for insights query

link GraphQL Schema definition

  • input InsightFilter {
  • # Query Insight based on the name of the observation OR insights together
  • 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!
  • # Query Insight based on the observation count range e.g [0, 5], [5, 10]
  • observationCountRange: [Int!]
  • # If set to true only return insights with with faulty observation
  • observationIsFault: Boolean!
  • # Query Insight based on the name of the observation
  • observationNameContains: String
  • # Query Insight based on the observation resource types
  • observationResourceKinds: [String!]
  • # 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 source of the observation
  • source: [ObservationSource!]
  • }