mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-18 06:22:25 +03:00
27 lines
572 B
JavaScript
27 lines
572 B
JavaScript
import { runQuery } from "~/node_common/data/utilities";
|
|
|
|
export default async ({ slatename, data = {} }) => {
|
|
return await runQuery({
|
|
label: "CREATE_SLATE",
|
|
queryFn: async (DB) => {
|
|
const query = await DB.insert({
|
|
slatename,
|
|
data,
|
|
})
|
|
.into("slates")
|
|
.returning("*");
|
|
|
|
const index = query ? query.pop() : null;
|
|
index.type = "SLATE";
|
|
return index;
|
|
},
|
|
errorFn: async (e) => {
|
|
console.log(e);
|
|
return {
|
|
error: true,
|
|
decorator: "CREATE_SLATE",
|
|
};
|
|
},
|
|
});
|
|
};
|