Query for all assets that don't have empty tag?

Could you please help me to query for all the assets that has a specific non empty tag? I was thinking in something like FIND * with tag.application but this is not working for me. 

Answers

  • jdowdy
    jdowdy ✭✭✭✭✭
    You can use the undefined keyword.  The undefined keyword can be used to filter on the absence of a property.
    find * with tag.application !=undefined as r1 
         return r1._type AS Type

This Month's Leaders