lithium\data\Model::$_query

protected property

Default query parameters for the model finders.

Can be either redefined in a model subclass or changed during runtime using Model::query().

For a detailed description of the available query options below see the description of the $options parameter of Model::find().

Source

	protected $_query = [
		'fields'     => null,
		'conditions' => null,
		'having'     => null,
		'group'      => null,
		'order'      => null,
		'limit'      => null,
		'offset'     => null,
		'page'       => null,
		'with'       => [],
		'joins'      => []
	];