Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

AllParents is the equivalent of AllPackages but for parent requirements of a child requirement.

You can use it to find all requirements that belong to a parent requirement, or any child of that requirement.

Parent and AllParents rely on the use of sub-selects for identifying the parent requirement.

To query against just the immediate parent of a requirement, rather then a parent and any of it's parents etc. - then use Parent field instead.

Examples

All requirements belonging to any parent requirement with a name that contains the word reports:

...

Code Block
languagenone
AllParents IN { Name ~ "Reports" OR Description ~ "reporting engine" AND Project = 'Project X' }

Supported Operators

=, IN, !=, NOT IN, IS, IS NOT

Supported Indexes

Entity, Relationship

Supported Types

  • Requirement

...