take workflow inputs from child workflow workflow inputs

This commit is contained in:
Ivan Atanasov 2024-11-26 15:48:28 +01:00
parent 6f66faaabd
commit 7f436a91fb
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -202,7 +202,7 @@ export class ExecuteWorkflow implements INodeType {
loadOptionsDependsOn: ['workflowId.value'],
resourceMapper: {
resourceMapperMethod: 'getWorkflowInputs',
mode: 'upsert',
mode: 'add',
fieldWords: {
singular: 'workflow input',
plural: 'workflow inputs',

View file

@ -14,9 +14,9 @@ export async function getWorkflowInputs(
id: col,
displayName: col,
required: false,
defaultMatch: col === 'id',
defaultMatch: true,
display: true,
type: 'string',
type: 'number',
canBeUsedToMatch: true,
}));