...
Query | Result |
---|---|
key = 'IG-1' | The requirement with the exact key. |
key ~ 'IG-%' | All requirements starting with 'IG-'. |
text ~ '% something' | All requirements whose text ends with 'something'. |
page = '467382' | All requirements defined on the page with ID 467382. |
page ~ '467382' | All requirements defined or linked on the page. |
jira = 'JRA-21' | All requirements linked from the issue JRA-21. |
jira@implements = 'JRA-21' | All requirements linked from the issue JRA-21 with the relationship "Implements". |
NOT (JIRA ~ '%') | Requirements which are not linked to any JIRA issue. |
@Category = 'Functional' | All requirements where the property 'Category' = 'Functional'. |
...