RQM Integration Service: Filtering Custom Attribute _Label with contains value not working as expected
Hi Team,
I am working with the RQM Integration Service API to retrieve test cases and filter based on a custom attribute (
_Label
).
I need to retrieve only those test cases where:
-
Custom attribute name =
_Label -
Custom attribute value contains
"13"(anywhere in the string)
I have used below API,
?fields=feed/entry/content/testcase[customAttributes/customAttribute/name="_Label" and (customAttributes/customAttribute/value="13x")]/*&wildcard=x
Observed Behavior:
Using, value="13x"&wildcard=x works for prefix match only
Using, value="x13"&wildcard=x returns test cases where ANY custom attribute contains "13",
not just
_Label
Is it possible to get all the test cases custom attribute value contains
"13" or any specific value
(anywhere in the string)