Triggering Node Red Flow when Shopping List item is completed

Hi Guys,

Im working on setting up an automated shopping list, Im looking for a method of triggering a flow within Node Red when an a specific item on the list is completed.

Can someone tell me is there a specific event I can filter on when something happens within the shopping list?

Also is there a means via Node Red of checking if an open item is already on the list? trying to avoid creating duplicate items.

Thanks

In case anyone is interested I figured this out using the event all node I was able to filter using “shopping_list_updated” event

I then used two switch nodes filtered on the following payload information to filter on the item and state:

payload.event.item.name
payload.event.item.complete

Any chance yiou’d be able to share your flow for this? I’m really struggling.