I'm trying to find all the items that contain a specific variable name, like "hurs". The item with the "hurs" variable looks like this: <img height="400" alt="Image" src="https://github.com/user-attachments/assets/a7e7b412-7a40-4b14-96c1-46539a67ef34" /> and I know that `WHERE "cube:variables".hurs IS NOT NULL` works. But what should the filter argument for `rustac` look like? ``` python cql_json_filter = { "op": "is_not_null", "args": [ {"property": "cube:variables.hurs"} ] } items = await rustac.search('stac_items.parquet', filter=cql_json_filter) ``` doesn't error, but doesn't return my item either. I pretty sure this is some simple user syntax error, here, right?