feat: exact match search

This commit is contained in:
Methapon2001 2023-12-14 15:35:18 +07:00
parent e65fb9f5d9
commit 6e9145e3cc
No known key found for this signature in database
GPG key ID: 849924FEF46BD132
4 changed files with 26 additions and 4 deletions

View file

@ -2,9 +2,12 @@ export interface Search {
AND?: {
field: string;
value: string;
exact?: boolean;
}[];
OR?: {
field: string;
value: string;
exact?: boolean;
}[];
exact: boolean;
}