17 Jan 2025
09:23 PM
- last edited on
20 Jan 2025
08:03 AM
by
MaciejNeumann
Hello,
I have a DQL query that throws a warning "The field Filename overrides an existing field." but it runs and displays the output I want.
I've used this query in multiple tiles in a dashboard and they are working as intended. however, this causes a brown arrow to show on the side of each Tile that is having this warning which our customers don't like to see.
I was wondering if there is a way to ignore this warning or get rid of the arrow?
Solved! Go to Solution.
20 Jan 2025 11:43 PM
Hey @shahin24093
As far as I can tell you cannot suppress the warning without cleaning up the DQL. Based on the warning you're getting it looks like you could be using the "FieldsAdd" command to override the value of a field, changing that to use the fields command gets rid of the warning for me.
For example this gives me a warning:
But this does not:
Both give the same result.
Hope this helps!
21 Jan 2025 04:30 PM
I was able to resolve this warning by using FieldsRemove before the FieldsAdd and the warning disappeared. Thanks for looking into this.