Closed rpkilby closed 9 years ago
DRF has a default filtering class based around Django style lookups. ie,
http://example.com/api/comments?post_lt=4&author=10
JSON-API specifies that filters need to live under the filter query param. ie,
filter
http://example.com/api/comments?filter[post__lt]=4&filter[author]=10
Additional filtering recommendations.
A few thoughts:
Fixed by 65b4d2f46fc253095051da819d8c1da3bfe3a209
DRF has a default filtering class based around Django style lookups. ie,
JSON-API specifies that filters need to live under the
filter
query param. ie,Additional filtering recommendations.
A few thoughts: