Commit ffa1875a authored by Jens's avatar Jens

Fixed operators

parent d696ff2f
......@@ -18,11 +18,11 @@ class Query extends \Illuminate\Database\Query\Builder {
*/
protected $operators = array(
'=' => '=',
'!=' => '!=',
'!=' => '$ne',
'<' => '$lt',
'<=' => '$le',
'<=' => '$lte',
'>' => '$gt',
'>=' => '$ge',
'>=' => '$gte',
'in' => '$in',
'exists' => '$exists'
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment