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
Help request here.
I am using an endpoint that uses page[offset] and page[limit] & so have made use of:
page[offset]
page[limit]
JsonApiClient::Paginating::NestedParamPaginator.page_param = "offset" JsonApiClient::Paginating::NestedParamPaginator.per_page_param = "limit"
But, this isn't correct because the endpoint expects an offset and not a page. How do I go about configuring this such that:
Model.page(X).per_page(Y)
...constructs the appropriate parameters when I send the model a page method?
page
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Help request here.
I am using an endpoint that uses
page[offset]
andpage[limit]
& so have made use of:But, this isn't correct because the endpoint expects an offset and not a page. How do I go about configuring this such that:
...constructs the appropriate parameters when I send the model a
page
method?The text was updated successfully, but these errors were encountered: