Project

Profile

Help

Issue #3558

Updated by dalley almost 6 years ago

I was working with @kersom who was having trouble with the repo version filters. 

 First, there's a <code>content</code> filter of type 'string' but there's no description or indication of what it expects. Recommend adding a description. Also, is there a type we can use like 'href' or something?  

 Then there's <code>version_min</code> and <code>version_max</code>. First off, there's no version field on repo version. It's actually called 'number'. Secondly, there's no indication in the api schema whether version_min=1 will include repo version 1 or not. We could maybe just use 'gt', 'gte', 'lt', 'lte' like django-filters. 

 edit:    The we should remove the "version_min" and "version_max" filters and expose the number field to filter on directly, e.g. "number__lte"

Back