mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-11 10:24:14 +03:00
21 lines
441 B
JavaScript
21 lines
441 B
JavaScript
|
import { runQuery } from "~/node_common/data/utilities";
|
||
|
|
||
|
export default async ({ id }) => {
|
||
|
return await runQuery({
|
||
|
label: "DELETE_SUBSCRIPTION_BY_ID",
|
||
|
queryFn: async (DB) => {
|
||
|
const data = await DB.from("subscriptions")
|
||
|
.where({ id })
|
||
|
.del();
|
||
|
|
||
|
return 1 === data;
|
||
|
},
|
||
|
errorFn: async (e) => {
|
||
|
return {
|
||
|
error: "DELETE_SUBSCRIPTION_BY_ID",
|
||
|
source: e,
|
||
|
};
|
||
|
},
|
||
|
});
|
||
|
};
|