[Fixed]-How to do a Left Join query with Where clause in TastyPie?

1👍

In querystring:

/api/v1/articles/?section__title__in=Section X,Section Y

Somwhere in ArticleResource:

self.queryset.filter(section__title__in=['Section X', 'Section Y'])

Leave a comment