lithium\data\source\MongoDb::$_operators

protected property

Map of typical SQL-like operators to their MongoDB equivalents.

Source

	protected $_operators = [
		'<' => '$lt',
		'>' => '$gt',
		'<=' => '$lte',
		'>=' => '$gte',
		'!=' => ['single' => '$ne', 'multiple' => '$nin'],
		'<>' => ['single' => '$ne', 'multiple' => '$nin'],
		'or' => '$or',
		'||' => '$or',
		'not' => '$not',
		'!' => '$not',
		'and' => '$and',
		'&&' => '$and',
		'nor' => '$nor'
	];