Hi! I just wanted to know if there was any way to exclude a tag at a model level. From my understanding, tags are additive, so if I have the following structure:
Top
|__ A.sql
|__ B.sql
|__ C.sql
|__ […]
And I had a tag ‘daily’ on the directory Dir, which let me know that all of the models inside Dir are to be run daily . Let’s say that For A specifically, I wanted it to be run weekly instead. If I were to add the tag ‘weekly’ in A’s config, my understanding is that it would end up with tags [‘daily’, ‘weekly’].
Is there any way in the config file that I could both add the tag ‘weekly’, but also remove the tag ‘daily’ for that model in particular?
I know there are probably workarounds I can do, but I was curious to know if tag substraction specifically was supported. Thanks!