I think popular question, but I don't found solution. Look e.g. I have object {title:..., book:.... author:...}
and would like filter my view by title like below:
<div ng-repeat="product in main.products | filter: {{product.title}}">
<span>{{product.author}}</span>
</div>
In <span>
author has shown, but filter not working.