mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(core): Deprecate prepareOutputData (no-changelog) (#7091)
This commit is contained in:
committed by
GitHub
parent
c04a996fb4
commit
6aa7b93473
@@ -456,7 +456,7 @@ export class NocoDB implements INodeType {
|
||||
}
|
||||
}
|
||||
|
||||
return this.prepareOutputData(returnData as INodeExecutionData[]);
|
||||
return [returnData as INodeExecutionData[]];
|
||||
}
|
||||
|
||||
if (operation === 'get') {
|
||||
@@ -534,7 +534,7 @@ export class NocoDB implements INodeType {
|
||||
throw new NodeApiError(this.getNode(), error as JsonObject, { itemIndex: i });
|
||||
}
|
||||
}
|
||||
return this.prepareOutputData(newItems);
|
||||
return [newItems];
|
||||
}
|
||||
|
||||
if (operation === 'update') {
|
||||
|
||||
Reference in New Issue
Block a user