This commit is contained in:
Benjamin Toby
2025-01-15 22:59:16 +01:00
parent a2feec6f5b
commit b18ec506b3
6 changed files with 89 additions and 23 deletions
+11 -2
View File
@@ -3,10 +3,19 @@
import _ from "lodash";
import serverError from "../../backend/serverError";
import runQuery from "../../backend/db/runQuery";
import { DSQL_TableSchemaType, GetReturn } from "../../../types";
import {
DSQL_TableSchemaType,
GetReturn,
ServerQueryParam,
} from "../../../types";
type Param = {
query: string;
query:
| string
| {
query: ServerQueryParam;
table: string;
};
queryValues?: (string | number)[];
dbFullName: string;
tableName?: string;