Skip to main content
Defines the row limit of the query if a limit is set on the query in the workbook.

Syntax

limit: <limit_value>

Properties

query
object[]
An object containing the individual parameters that make up a query view’s query definition.

Examples

Top ten users by spend
query:
  fields:
    users.id: id
    order_items.sale_price_sum: sales
  base_view: order_items
  sorts:
    - field: order_items.sale_price_sum
      desc: true
  limit: 10