Expand search with external ID searches.

This commit is contained in:
James Cole
2022-12-29 15:42:26 +01:00
parent 8c320fd199
commit 5e3f9f9bce
5 changed files with 63 additions and 2 deletions

View File

@@ -1169,6 +1169,14 @@ class OperatorQuerySearch implements SearchInterface
case 'any_external_url':
$this->collector->withExternalUrl();
break;
case '-any_external_id':
case 'no_external_id':
$this->collector->withoutExternalId();
break;
case '-no_external_id':
case 'any_external_id':
$this->collector->withExternalId();
break;
case 'external_url_is':
$this->collector->setExternalUrl($value);