mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
aea3c50131
Github issue / Community forum post (link here to close automatically): Community: https://community.n8n.io/t/date-time-deletes-incoming-props/27492/3 GH Issue: https://github.com/n8n-io/n8n/issues/7646 --------- Co-authored-by: Marcus <marcus@n8n.io>
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',
|
|
};
|