Hi, I would like to filter my 'Get Items' function with a "Does not contain" type of filter but I am unsure of the syntax. Can somebody please assist me with the correct syntax?
not contains doesn't work with odata filter query but can use 'not' like this:
$filter=not(startswith(fieldName,'text to search'))
That should make the trick:
It will bring all records, excluding the ones having abcdefg in their Fieldname.
?$filter=not substringof('abcdefg', Fieldname)
Apparently, it is now possible to do not()-notation (know from workflow definition language, you do expressions in) to reverse a contains statement:
Solved this one by using the filter array action after the get items function
You can use substringof in the Filter Query of your Get Items action, but it looks like you can't do the "not" version of that. This post shows another way to do it.
Pat