Versions Compared

Key

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

...

Destination is a field available for use when within a relationships sub-select, and allows you to select the RelatedTo (destination) entities based on a subsequent sub-select against the Entities index.

Examples

All requirements that related to scripts, where the scripts have a text that contains the word "button":

...

For the above example, a more succinct way to write the query would be the use the RelatedTo field instead:

Code Block
languagenone
EntityType = Requirement AND RelatedTo IN { EntityType = Script AND Text ~ "button" }

See Also

Supported Operators

=, IN, !=, NOT IN

Supported Indexes

Relationship

Supported Types

  • AgileRun
  • AutomatedTest
  • AutomatedTestAssignment
  • Incident
  • Requirement
  • RequirementPackage
  • TestExecutionPackage
  • TestScript
  • TestScriptAssignment
  • TestScriptPackage

...