Using wildcards in Filter "Browse Test..."
One answer
Wildcards are supported in RQM's reportable REST API.
You can refer to https://jazz.net/wiki/bin/view/Main/RqmApi#wildcard for more details.
For example, https://server:port/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/JKEBanking/testplan?fields=feed/entry/content/testplan[title='Test Plan*']/*&wildcard=* will return all test plans where title starts from "Test Plan".
${public}/service/com.ibm.rqm.integration.service.IIntegrationService/resources/${projectAreaUUID}/testplan?fields=feed/entry/content/testplan[title='${userInput}']/*&wildcard=*
You can refer to https://jazz.net/wiki/bin/view/Main/RqmApi#wildcard for more details.
For example, https://server:port/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/JKEBanking/testplan?fields=feed/entry/content/testplan[title='Test Plan*']/*&wildcard=* will return all test plans where title starts from "Test Plan".
-
<feedUrl>?fields=feed/entry/content/testplan[title='test plan X']/description&wildcard=X will return description of test plans where title starts with "test plan".
${public}/service/com.ibm.rqm.integration.service.IIntegrationService/resources/${projectAreaUUID}/testplan?fields=feed/entry/content/testplan[title='${userInput}']/*&wildcard=*