This commit is contained in:
Rizky 2024-03-07 11:16:16 +07:00
parent 9ea7e373d8
commit 90678d1fae
2 changed files with 7 additions and 4 deletions

View File

@ -1,15 +1,16 @@
import { apiContext } from "service-srv";
import { execQuery } from "utils/query";
const g = global as any;
export const _ = {
url: "/_dbs/:dbName/:action",
async api(dbName: any, action?: string) {
url: "/_dbs/:tableName",
async api(tableName: any) {
const { req, res } = apiContext(this);
if (typeof db !== "undefined") {
if (typeof g.db !== "undefined") {
const body = req.params;
try {
const result = await execQuery(body, db);
const result = await execQuery(body, g.db);
res.send(result);
} catch (e: any) {
res.sendStatus(500);

View File

@ -10,6 +10,8 @@ export type DBArg = {
export const execQuery = async (args: DBArg, prisma: any) => {
const { table, action, params } = args;
console.log(args);
const tableInstance = prisma[table];
if (tableInstance) {