Field: AllParents
Description
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 its parents etc. - then use Parent field instead.
Examples
All requirements belonging to any parent requirement with a name that contains the word reports:
AllParents IN { Name ~ "Reports" }
All requirements belonging to any parent requirement with a name that contains the word "Reports", or a description that contains the words "reporting" or "engine" within project "Project X":
AllParents IN { Name ~ "Reports" OR Description ~ "reporting engine" AND Project = 'Project X' }
Supported Operators
Supported Indexes
Supported Types
- Requirement
Supported Features
Feature | Supported? |
---|---|
Aggregation | No |
Sortable | No |
Sub-selects | Yes |