feat(Notion Node): Option to simplify output in getChildBlocks operation (#7791)

Github issue / Community forum post (link here to close automatically):

---------

Co-authored-by: Marcus <marcus@n8n.io>
This commit is contained in:
Michael Kret
2023-11-27 15:02:57 +02:00
committed by GitHub
parent 137e23853f
commit d667bca658
5 changed files with 72 additions and 2 deletions

View File

@@ -199,4 +199,19 @@ export const blockFields: INodeProperties[] = [
},
default: false,
},
{
displayName: 'Simplify Output',
name: 'simplifyOutput',
type: 'boolean',
displayOptions: {
show: {
resource: ['block'],
operation: ['getAll'],
},
hide: {
'@version': [1, 2],
},
},
default: true,
},
];