[Answer]-Using tastypie filters with angularjs and restangular

1👍

From https://github.com/mgonto/restangular/issues/301#issuecomment-24273429

// GET to /partners?where={agentID: 1}
Restangular.all('partners').getList({where: '{agentID: 1}'});

// GET to /partners/123?where={agentID: 1}
Restangular.one('partners', 123).get({where: '{agentID: 1}'});

Seems like the getList() does the trick here.

Leave a comment