Skip to main content
This will be overridden by a given field’s drill_fields parameter.

Syntax

default_drill_fields: [ field1, field2, ... ]

Properties

default_drill_fields
array
An array of field names to include in the default drill set. Can be an empty array to remove drill.To remove drilling, add this parameter to the view but leave the value empty: []

Examples

Default drill fields for order_items
default_drill_fields:
  [
    id,
    user_id,
    users.full_name,
    inventory_items.product_name,
    sale_price,
    margin,
    "order_items.created_at[date]",
    status
  ]
Remove drilling
default_drill_fields: []