Using Rally ,Net API v2.0 with C#. I am trying to get an OR condition filter for my query so that I can pass in a list of IDs.
Something along the lines of:
string input = "abc, xyz1";
Request storyRequest = new Request("hierarchicalrequirement");
storyRequest.Query = new Query("FormattedID", Query.Operator.Contains, input);
I want to be able to add multiple IDs to the input list and have it work without having to write another OR in the query string.
The FormattedID attribute does not support the contains operator. You'll have to OR together all the searches.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With