Skip to content

6. Counting Results

Roman Kravets edited this page Feb 9, 2018 · 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},
	})\
	.sort('title')\
	.count()