I’m having an issue with using the Job API for this filter string:
(State eq 'Running' or State eq 'Pending') and ReleaseName eq 'xGL.OL.Approvals.Dispatcher_DEV-All Robots' and InputArguments eq '{"in_xGLInstanceName":"XGT1","in_olaStartDate":"*","in_olaLookAheadDays":"*"}'
What I have discovered is the Job Activity and Job API works both work when you have hard values for the filter criteria for InputArguments. As an example, this works:
(State eq 'Running' or State eq 'Pending') and ReleaseName eq 'xGL.OL.Approvals.Dispatcher_DEV-All Robots' and InputArguments eq '{"in_xGLInstanceName":"XGT1","in_olaStartDate":"04/01/2022","in_olaLookAheadDays":"29"}'
But … how do you do a search when you want to have one InputArgument with a specific value and the others are just wildcarded. Assuming odata.org still applies here and “*” seems to be a wild card specification but it’s not working in the above.
Anyone know if wildcarding for InputArguments is possible ?