A way to search for *any* property that is null

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.

[/.*/:null] should work currently. It uses a REGEX search for the key and matches any property key.

2 Likes

I had tried the regex option but without the forward slashes.

This works for me. Thanks