I'd expect this query to only return Dell R640's with only a single disk, instead it returns all systems. ``` # quads --ls-hosts --filter "model==r640, disks.count==1" | wc -l 347 ``` Same results with `disks.count>=1` ``` # quads --ls-hosts --filter "model==r640, disks.count<=1" | wc -l 347 ```