INPUT_OBJECT

EntityTraversalFilterInput

link GraphQL Schema definition

  • input EntityTraversalFilterInput {
  • # Traversal to use for the filter.
  • # The filter matches if a traversal is found, unless the NOT logicalOperator is
  • # used.
  • # Only one of nestedFilters or entitiesTraversal must be specified.
  • entitiesTraversal: [EntityTraversalInput!]
  • # boolean operator to apply to the filter. Defaults to AND. Use NOT only when
  • # there is a single entitiesTraversal.
  • logicalOperator: EntityTraversalLogicalOperator
  • # Optionally allows for more complex recursive filters such as
  • # "vm in cluster C1 AND in application A1"
  • # Only one of nestedFilters or entitiesTraversal must be specified.
  • nestedFilters: [EntityTraversalFilterInput!]
  • # Deprecated equivalent to permitting logicalOperator NOT for a single filter.
  • # Will override logicalOperator for entitiesTraversal if provided.
  • # If set to true, filter passes if there is a matching traversal.
  • # If set to false, filter passes if there are no matching traversals.
  • retainIfMatch: Boolean
  • }