feat: exact match search
This commit is contained in:
parent
e65fb9f5d9
commit
6e9145e3cc
4 changed files with 26 additions and 4 deletions
|
|
@ -2,9 +2,12 @@ export interface Search {
|
|||
AND?: {
|
||||
field: string;
|
||||
value: string;
|
||||
exact?: boolean;
|
||||
}[];
|
||||
OR?: {
|
||||
field: string;
|
||||
value: string;
|
||||
exact?: boolean;
|
||||
}[];
|
||||
exact: boolean;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue