feat(n8n Node): Add missing filters (#15437)

Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com>
This commit is contained in:
Khoa
2025-06-10 00:54:23 +07:00
committed by GitHub
parent 9bbb087bf1
commit b07c52e577

View File

@@ -246,6 +246,46 @@ const getAllOperation: INodeProperties[] = [
description: 'Include only workflows with these tags', description: 'Include only workflows with these tags',
hint: 'Comma separated list of tags (empty value is ignored)', 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 }}',
},
},
},
},
], ],
}, },
]; ];