feat(Notion Node): Fetch child blocks recursively (#7304)

Github issue / Community forum post (link here to close automatically):
This commit is contained in:
Michael Kret
2023-10-06 14:55:44 +03:00
committed by GitHub
parent 97bb703d0a
commit 193181a9c6
3 changed files with 69 additions and 3 deletions

View File

@@ -187,4 +187,16 @@ export const blockFields: INodeProperties[] = [
default: 50,
description: 'Max number of results to return',
},
{
displayName: 'Also Fetch Nested Blocks',
name: 'fetchNestedBlocks',
type: 'boolean',
displayOptions: {
show: {
resource: ['block'],
operation: ['getAll'],
},
},
default: false,
},
];