mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
10 lines
296 B
TypeScript
10 lines
296 B
TypeScript
|
import type { INodeProperties } from 'n8n-workflow';
|
||
|
|
||
|
export const includeInputFields: INodeProperties = {
|
||
|
displayName: 'Include Input Fields',
|
||
|
name: 'includeInputFields',
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
description: 'Whether to include all fields of the input item in the output item',
|
||
|
};
|