# Problem Right now if you want to use 1 conditional filter, you must do it with the following syntax: ``` $filerdb->collection('users')->filter([ ['age', '>', 10] ]); ``` # Ideal Solution ``` $filerdb->collection('users')->filter([ 'age', '>', 10 ]); ```