11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const disableDotNotationBoolean: INodeProperties = {
|
|
displayName: 'Disable Dot Notation',
|
|
name: 'disableDotNotation',
|
|
type: 'boolean',
|
|
default: false,
|
|
description:
|
|
'Whether to disallow referencing child fields using `parent.child` in the field name',
|
|
};
|