tachybase_todo/packages/plugin-workflow/src/instructions/destroy.ts

23 lines
533 B
TypeScript
Raw Normal View History

import { JOB_STATUS } from "../constants";
import FlowNodeModel from "../models/FlowNode";
export default {
async run(this: FlowNodeModel, input, execution) {
const {
collection,
params = {}
} = this.config;
const repo = (<typeof FlowNodeModel>this.constructor).database.getRepository(collection);
const result = await repo.destroy({
...execution.getParsedValue(params),
transaction: execution.transaction
});
return {
result,
status: JOB_STATUS.RESOLVED
};
}
}