And again I can't find proper solution for my scenario.
I have succesfully established connection between node-red and MySQL , SELECT is working flawlessly, but I can't mind how to receive msg.debug whenever there is new INSERT into MySQL table.
Each input has unique ID, so is it even possible to gather information as I want?
For example:
User A filled quiz which produced new ID in MySQL, when it happens node-red msg.debug says: 'hey , new entry with #ID' This checker can be time triggered , for example 2mins.
I need to receive msg.payload notification only when new ID is created in MySQL! If ID, for example #ID4583 is the same, check it after 10mins again! If #ID4584 , msg.payload should notify me .
Is it possible?