From b07c52e5777f114fc54c4bb0a280d94d06dd6a43 Mon Sep 17 00:00:00 2001 From: Khoa Date: Tue, 10 Jun 2025 00:54:23 +0700 Subject: [PATCH] feat(n8n Node): Add missing filters (#15437) Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com> --- .../nodes/N8n/WorkflowDescription.ts | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/packages/nodes-base/nodes/N8n/WorkflowDescription.ts b/packages/nodes-base/nodes/N8n/WorkflowDescription.ts index 9b8d4360b7..d9c57062f1 100644 --- a/packages/nodes-base/nodes/N8n/WorkflowDescription.ts +++ b/packages/nodes-base/nodes/N8n/WorkflowDescription.ts @@ -246,6 +246,46 @@ const getAllOperation: INodeProperties[] = [ description: 'Include only workflows with these tags', hint: 'Comma separated list of tags (empty value is ignored)', }, + { + displayName: 'Name', + name: 'name', + type: 'string', + default: '', + routing: { + request: { + qs: { + name: '={{ $value }}', + }, + }, + }, + }, + { + displayName: 'Project ID', + name: 'projectId', + type: 'string', + default: '', + routing: { + request: { + qs: { + projectId: '={{ $value }}', + }, + }, + }, + }, + { + displayName: 'Exclude Pinned Data', + name: 'excludePinnedData', + description: 'Whether to exclude pinned data from the response', + type: 'boolean', + default: false, + routing: { + request: { + qs: { + excludePinnedData: '={{ $value }}', + }, + }, + }, + }, ], }, ];