I want the system to work 1 day before

At the node google calendar will set to 1 day 1 minute.
{{$now.plus({day: 1}).toString()}}

But I don’t know what to do

Hey @Panupol_Sonnuam,
i tried out your Google calendar node and it’s giving me all events in the next 24 hours. Is that not what you expected?

Yes, but it seems I have to allow 1 minute.
for the system to check in the last 1 minute

Ok, you can add 1 day and 1 minute like this

{{$now.plus({day: 1, minute: 1}).toString()}}

Is that what you are looking for?

it’s work thank!

1 Like