From c1f5f0632bf8c4c115cde1bce876f1215add3ee7 Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Mon, 5 Aug 2024 16:34:09 +0000 Subject: [PATCH] fix: mark steps incomplete when their parameters change --- packages/backend/src/graphql/mutations/update-step.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/backend/src/graphql/mutations/update-step.js b/packages/backend/src/graphql/mutations/update-step.js index 3d87bb53..398804d5 100644 --- a/packages/backend/src/graphql/mutations/update-step.js +++ b/packages/backend/src/graphql/mutations/update-step.js @@ -56,6 +56,7 @@ const updateStep = async (_parent, params, context) => { appKey: input.appKey, connectionId: input.connection.id, parameters: input.parameters, + status: 'incomplete' }) .withGraphFetched('connection');