777
1
Use case or problem
I want to find which files have incomplete properties (not fully filled) so that I can fill them.
Proposed solution
For example, [*:null]
Current workaround (optional)
Doing them one by one, but it is tedious if you have many properties.
liam
2
[/.*/:null]
should work currently. It uses a REGEX search for the key and matches any property key.
2 Likes
777
3
I had tried the regex option but without the forward slashes.
This works for me. Thanks