10 lines
296 B
TypeScript
Executable File
10 lines
296 B
TypeScript
Executable File
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',
|
|
};
|