Skip to content

Commit

Permalink
docs: offset param
Browse files Browse the repository at this point in the history
  • Loading branch information
paveltiunov committed Aug 14, 2019
1 parent 59d4687 commit 840f9d4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/Cube.js-Frontend/Query-Format.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Query has the following properties:
- `segments`: An array of segments. Segment is a named filter, created in the Data Schema.
- `limit`: A row limit for your query. The default value is `10000`. The
maximum allowed limit is `50000`.
- `offset`: Number of first rows to be skipped for your query. The default value is `0`.
- `order`: An object, where keys are measures or dimensions to order by and
their corresponding values are either `asc` or `desc`. The order of the
fields to order is based on the order of the keys in the object.
Expand All @@ -45,6 +46,7 @@ Query has the following properties:
granularity: 'month'
}],
limit: 100,
offset: 50,
order: {
'Stories.time': 'asc',
'Stories.count': 'desc'
Expand Down

0 comments on commit 840f9d4

Please sign in to comment.