Files
Automata/packages/nodes-base/nodes/ItemLists/V3/actions/common.descriptions.ts
2023-07-03 15:01:01 +03:00

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',
};