feat: add ability to check for existence of a field

This commit is contained in:
2024-01-12 10:58:49 +01:00
committed by Rainer Killinger
parent c4a5d6e73b
commit 912ae42270
3 changed files with 31 additions and 8 deletions

View File

@@ -33,6 +33,8 @@ export interface SCValueFilterArguments extends SCSearchAbstractFilterArguments
/**
* Value to filter. One or more values has to match the field exactly.
*
* Leaving the value out will check if the field exists.
*/
value: string | string[];
value?: string | string[];
}