mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
Contentful integration
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
import { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export const fields = [
|
||||
{
|
||||
displayName: 'Search Parameters',
|
||||
name: 'search_parameters',
|
||||
description: 'You can use a variety of query parameters to search and filter items.',
|
||||
placeholder: 'Add parameter',
|
||||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true
|
||||
},
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Parameters',
|
||||
name: 'parameters',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Parameter Name',
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Name of the search parameter to set.'
|
||||
},
|
||||
{
|
||||
displayName: 'Parameter Value',
|
||||
name: 'value',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Value of the search parameter to set.'
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
] as INodeProperties[];
|
||||
Reference in New Issue
Block a user