We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider https://edb3662.datasette.io/fixtures/roadside_attraction_characteristics?_sort=attraction_id&_size=2
The "Next page" link goes here, which returns 0 rows:
https://edb3662.datasette.io/fixtures/roadside_attraction_characteristics?_size=2&_next=%257B%2527value%2527%253A%2B2%252C%2B%2527label%2527%253A%2B%2527Winchester%2BMystery%2BHouse%2527%257D%2C2&_sort=attraction_id
That's because if you double-url-decode that _next link you get this:
_next
_next={'value': 2, 'label': 'Winchester Mystery House'},2
It should be _next=2,2
_next=2,2
The text was updated successfully, but these errors were encountered:
9c58d04
Fixed: https://latest.datasette.io/fixtures/roadside_attraction_characteristics?_sort=attraction_id&_size=2
Sorry, something went wrong.
No branches or pull requests
Consider https://edb3662.datasette.io/fixtures/roadside_attraction_characteristics?_sort=attraction_id&_size=2
The "Next page" link goes here, which returns 0 rows:
https://edb3662.datasette.io/fixtures/roadside_attraction_characteristics?_size=2&_next=%257B%2527value%2527%253A%2B2%252C%2B%2527label%2527%253A%2B%2527Winchester%2BMystery%2BHouse%2527%257D%2C2&_sort=attraction_id
That's because if you double-url-decode that
_next
link you get this:_next={'value': 2, 'label': 'Winchester Mystery House'},2
It should be
_next=2,2
The text was updated successfully, but these errors were encountered: