Commit ffa1875a authored by Jens's avatar Jens

Fixed operators

parent d696ff2f
...@@ -18,11 +18,11 @@ class Query extends \Illuminate\Database\Query\Builder { ...@@ -18,11 +18,11 @@ class Query extends \Illuminate\Database\Query\Builder {
*/ */
protected $operators = array( protected $operators = array(
'=' => '=', '=' => '=',
'!=' => '!=', '!=' => '$ne',
'<' => '$lt', '<' => '$lt',
'<=' => '$le', '<=' => '$lte',
'>' => '$gt', '>' => '$gt',
'>=' => '$ge', '>=' => '$gte',
'in' => '$in', 'in' => '$in',
'exists' => '$exists' '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