Skip to content
New issue

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

Add examples for order #479

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion doc/server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -448,11 +448,25 @@ Example for request ``/aggregate?drilldown=date&cut=item:a``:


If pagination is used, then ``drilldown`` will not contain more than
``pagesize`` cells.
``pagesize`` cells for a page. Pages start from 0 and ``page=0`` gives the first page.

Note that not all backengs might implement ``total_cell_count`` or
providing this information can be configurable therefore might be disabled
(for example for performance reasons).

Example for ``order``

``..aggregate?order=amount``

Default is ascending order you can specify ordering method by ``asc`` or ``desc`` as below.

``..aggregate?order=amount:desc``

Pagination and ordering can be collectively used to get top lists.

For example (Top five amounts)
``..aggregate?order=amount:desc&pagesize=5&page=0``



Facts
Expand Down