Updates
This commit is contained in:
@@ -61,6 +61,9 @@ export default function sqlGenerator<
|
||||
const strArray: string[] = [];
|
||||
queryObj.value.forEach((val) => {
|
||||
const valueParsed = val;
|
||||
|
||||
if (!valueParsed) return;
|
||||
|
||||
const valueString =
|
||||
typeof valueParsed == "string"
|
||||
? valueParsed
|
||||
|
||||
@@ -1020,7 +1020,7 @@ export type ServerQueryObject<
|
||||
T extends object = { [key: string]: any },
|
||||
K extends string = string
|
||||
> = {
|
||||
value?: string | (string | ServerQueryValuesObject)[];
|
||||
value?: string | (string | ServerQueryValuesObject | undefined | null)[];
|
||||
nullValue?: boolean;
|
||||
notNullValue?: boolean;
|
||||
operator?: (typeof ServerQueryOperators)[number];
|
||||
|
||||
Reference in New Issue
Block a user