INPUT_OBJECT

EntityTraversalRecursionUntilInput

Input defining conditions to match to exit traversal recursion

link GraphQL Schema definition

  • input EntityTraversalRecursionUntilInput {
  • # Optionally filter by entityIds
  • entityId: [EntityId!]
  • # Optionally filter by this field, support leading '!' (not) and trailing '*'
  • # (starts with)
  • entityName: [String!]
  • # Optionally filter by this field, support leading '!' (not) and trailing '*'
  • # (starts with)
  • entityType: [String!]
  • # Optionally filter by entityTypes corresponding to the values from the enum (this
  • # can be used for its autocomplete functionality)
  • entityTypeConst: [EntityTypeConst!]
  • # Optional additional field filters to match for exiting traversal recursion
  • #
  • # The field format is `[[namespaces..](properties.|tags.)]`
  • filter: QueryFilter
  • # Optionally filter by this field, support leading '!' (not) and trailing '*'
  • # (starts with)
  • provider: [String!]
  • # Optionally filter by this field, support leading '!' (not) and trailing '*'
  • # (starts with)
  • service: [String!]
  • }