How can I sort a product collection to best selling?

{% assign basketball = collections.basketball.products | sort: 'best-selling'%}
{% for product in basketball  limit:4 %}
......
{% endfor %}

I am trying to get a set of collection and sorting them to best selling.
unfortunately this doesnt work.

any solution on this?