Skip to content

6. Counting Results

Sergey Kondratovec edited this page Nov 4, 2017 · 1 revision

Counting Results

// Return integer with amount of entities base on filter and ignored limit:
$client->products()
       ->filter([
        'price' => [FilterOperators::LESS_THAN_OR_EQUAL => 60000],
        ])
       ->limit(2)
       ->sort('title')
       ->count();