What is your goal?
Watch only when company information are modified (name, owner…) and not when an action is done within the company (email, call or notes related to this company)
What is the problem & what have you tried?
Selecting few “output properties”. I feel that the solution might be in the “query” field, but I don’t know why :-p
Error messages or input/output bundles
No error, I just have the trigger that starts even when someone adds a note to the company.
Hey @CypherB !
No, that is not controlled by output properties. Output properties only define what the module returns. The query field also will not limit which type of update triggers the watch.
If adding a note, email, or call updates the company’s modified timestamp in the source app, the trigger will fire anyway. So if you want it to run only when actual company fields like name or owner change, that is not something the watch module can distinguish by itself.
Dr. Tanvi Sachar
Monday Certified Partner, Tuesday Wizard
Thank you @Ethan_Marcellus for your answer. If it’s not possible using the watch module, do you have an idea about how it could be done? 
Hey @CypherB !
You would need to handle it after the trigger, not inside it.
Let the watch module trigger on every update, then add a filter or comparison step that checks only the specific fields you care about like name or owner. Compare the current values with the previous values, and only continue if those fields actually changed.
That way actions like notes, emails, or calls will be ignored because those fields won’t be different.
Dr. Tanvi Sachar
Monday Certified Partner, Tuesday Wizard
Thank you for your answer !
I wanted to avoid this solution that forces me to list all the fields of the company and test each and every one of them. But I understand that it seems to be the only solution.
Thank you again for helping me !
A question comes to me after trying to implement your suggestion
@Ethan_Marcellus Compare the current values with the previous values
I don’t get how to compare the two values. Is the previous data stored in the watch trigger? Or somewhere else?
Or do I have to copy my entire database to be able to check for differences?
Thank you again !