You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 14, 2019. It is now read-only.
Here's what I haven't figured out but am hoping works:
set number of resources per page (e.g. ?limit=30 or ?limit=none)
search (e.g. ?q=text or ?q=text+term or ?q=term+OR+term)
sort (e.g. ?sort=[columnhearder2] or ?sort=-[columnhearder2])
exclude (e.g. ?[columnheader1]=[value1]&[columnheader3]=-[value4]) (return all entries that have value1 in columnheader1 but exclude those that have value4 in columnheader3).
return only certain fields (e.g. ?field=columnheader2)
min/max (e.g. ?max[columnheader1]=[value1]_ (returns all records with a value less than or equal to value1)
range? (not sure how that'd be constructed but it'd be nice.
I filed an issue with the original project but don't know if it'll get answered.
Anyone have any guesses?
The text was updated successfully, but these errors were encountered:
It looks like perhaps some of the parameters you're trying to use (at least limit and sort) were implemented in sandman2 on 09-16-2015. It looks like autoapi uses@jmcarp's forked version that was last updated on 09-03-2015.
I'm not really sure about the details beyond that, but that might help to clear up any confusion with the upstream project. However, aside the parameters listed in sandman's test file, I'm not really sure of a definitive list of supported parameters. But on a quick glance, it seems like some of these would still need to be implemented.
Thanks a bunch for pointing out the test file. Interestingly, I am getting sort to work now, but not limit. It would make sense though that this would be an issue if we haven't factored in the more recent sandman2 code into what I'm hitting.
So far, here's what I've figured out:
Here's what I haven't figured out but am hoping works:
set number of resources per page (e.g. ?limit=30 or ?limit=none)sort (e.g. ?sort=[columnhearder2] or ?sort=-[columnhearder2])I filed an issue with the original project but don't know if it'll get answered.
Anyone have any guesses?
The text was updated successfully, but these errors were encountered: