From ecaa7c9687c45530a801a9901cfa142eec7a73ab Mon Sep 17 00:00:00 2001 From: TriggerAu Date: Mon, 27 Apr 2026 16:04:33 +1000 Subject: [PATCH] Change QueryOperator to 'ENDSWITH' for -endswith This solves the issue where by using -endswith returns all entries and not those that end with the value passed in. It also aligns -endswith and -startswith so they both work consistently --- ServiceNow/config/main.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ServiceNow/config/main.json b/ServiceNow/config/main.json index a07abd1..913ecf0 100644 --- a/ServiceNow/config/main.json +++ b/ServiceNow/config/main.json @@ -189,7 +189,7 @@ }, { "Name": "-endswith", - "QueryOperator": "%", + "QueryOperator": "ENDSWITH", "Description": "field ends with the value", "NumValues": 1 }, @@ -200,4 +200,4 @@ "NumValues": 2 } ] -} \ No newline at end of file +}