Solved
how to use NOTLIKE query Filter ?
Hi,
I am using the following snippet, to Query on FieldName Which does not contain the "Test Question" Text in the FieldName Data
var query = {
"filters":{
"type": "NOTLIKE",
"fieldName": "Name",
"value": "Test question:\\+*"
}
};
let params = {
t: result /* INFOTABLE */,
query: query /* QUERY */
};
// result: INFOTABLE
result = Resources["InfoTableFunctions"].Query(params);
Even though I get an INFOTABLE with rows containing "Test Question" in the FieldName "Name"..
Where did I do wrong?
Note: I have followed Query Parameter for Query Services (ptc.com) and Picked up the snippet from there
Thanks,

