25 Sep 2023 11:49 AM
I want to find items where a specific field is not existing. How can I do that with DQL?
Something like
fetch events
| filter myItem.nonexisting == null
Solved! Go to Solution.
25 Sep 2023 11:50 AM
A colleague pointed out the isNull function to me. The syntax is
fetch events
| filter isNull(myItem.nonexisting)
And this also works when the field does not exist.