First Commit

This commit is contained in:
2026-03-29 08:53:54 +01:00
commit 711e989ecd
226 changed files with 15615 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import { DSQL_TBEN_ME_BLOG_POSTS } from "@/src/types/dsql";
import { APIResponseObject } from "@moduletrace/bunext/types";
import datasquirel from "@moduletrace/datasquirel";
datasquirel
.crud<DSQL_TBEN_ME_BLOG_POSTS>({
action: "get",
table: "blog_posts",
query: {
order: {
field: "id",
strategy: "DESC",
},
query: {
published: {
value: "1",
},
},
},
})
.then((res) => {
console.log("res", res);
})
.catch((err) => {
console.error(err.message);
})
.finally(() => {
process.exit();
});