fix(Gmail Trigger Node): Show warning about multiple items returned (#19896)

This commit is contained in:
yehorkardash 2025-09-23 10:39:27 +00:00 committed by GitHub
parent a01e5a5bc2
commit 83173fb04c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,6 +63,15 @@ export class GmailTrigger implements INodeType {
polling: true,
inputs: [],
outputs: [NodeConnectionTypes.Main],
hints: [
{
type: 'info',
message:
'Multiple items will be returned if multiple messages are received within the polling interval. Make sure your workflow can handle multiple items.',
whenToDisplay: 'beforeExecution',
location: 'outputPane',
},
],
properties: [
{
displayName: 'Authentication',