Hi, how should my predicate look like if I want to select keywords where FinalUrls is empty/blank?
For the old Destination URL I used this
{:field => 'DestinationUrl', :operator => 'STARTS_WITH_IGNORE_CASE', :values => ['http']}
but for the new I change to this
{:field => 'FinalUrls', :operator => 'NOT_EQUALS', :values => ['']}
Is that the right way to do it?