feat: Implement update step graphQL mutation

This commit is contained in:
Faruk AYDIN
2022-01-06 22:08:46 +03:00
committed by Ali BARIN
parent b6c7ce96c9
commit d25d327ef7
3 changed files with 51 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ class Step extends Base {
appKey: { type: 'string', minLength: 1, maxLength: 255 },
type: { type: "string", enum: ["action", "trigger"] },
connectionId: { type: 'integer' },
parameters: { type: 'object' },
parameters: { type: ['object', null] },
}
}