mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(n8n Node): Add missing filters (#15437)
Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com>
This commit is contained in:
@@ -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 }}',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user