Revert "add check for arr"

40a43f5957
This commit is contained in:
Mutasem 2022-08-04 16:26:44 +02:00
parent 40a43f5957
commit 59a5d808ce
3 changed files with 0 additions and 22 deletions

View file

@ -20,9 +20,6 @@ export class AddNodeIds1658932910559 implements MigrationInterface {
await runChunked(queryRunner, workflowsQuery, (workflows) => {
workflows.forEach(async (workflow) => {
const nodes = workflow.nodes;
if (!Array.isArray(nodes)) {
return;
}
// @ts-ignore
nodes.forEach((node) => {
if (!node.id) {
@ -58,9 +55,6 @@ export class AddNodeIds1658932910559 implements MigrationInterface {
await runChunked(queryRunner, workflowsQuery, (workflows) => {
workflows.forEach(async (workflow) => {
const nodes = workflow.nodes;
if (!Array.isArray(nodes)) {
return;
}
// @ts-ignore
nodes.forEach((node) => delete node.id );

View file

@ -26,10 +26,6 @@ export class AddNodeIds1658932090381 implements MigrationInterface {
await runChunked(queryRunner, workflowsQuery, (workflows) => {
workflows.forEach(async (workflow) => {
const nodes = workflow.nodes;
if (!Array.isArray(nodes)) {
return;
}
// @ts-ignore
nodes.forEach((node) => {
if (!node.id) {
@ -71,10 +67,6 @@ export class AddNodeIds1658932090381 implements MigrationInterface {
await runChunked(queryRunner, workflowsQuery, (workflows) => {
workflows.forEach(async (workflow) => {
const nodes = workflow.nodes;
if (!Array.isArray(nodes)) {
return;
}
// @ts-ignore
nodes.forEach((node) => delete node.id );

View file

@ -24,10 +24,6 @@ export class AddNodeIds1658930531669 implements MigrationInterface {
await runChunked(queryRunner, workflowsQuery, (workflows) => {
workflows.forEach(async (workflow) => {
const nodes = JSON.parse(workflow.nodes);
if (!Array.isArray(nodes)) {
return;
}
nodes.forEach((node: INode) => {
if (!node.id) {
node.id = uuid();
@ -65,10 +61,6 @@ export class AddNodeIds1658930531669 implements MigrationInterface {
await runChunked(queryRunner, workflowsQuery, (workflows) => {
workflows.forEach(async (workflow) => {
const nodes = JSON.parse(workflow.nodes);
if (!Array.isArray(nodes)) {
return;
}
// @ts-ignore
nodes.forEach((node) => delete node.id );