Field: Destination

Description

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":

EntityType = Requirement AND Relationships IN { Destination IN { EntityType = Script AND Text ~ "button" } }

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

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

Supported Features

FeatureSupported?
AggregationNo
SortableNo
Sub-selectsYes

  • No labels