Sets

A set is a named collection of columns pre-defined by you so that your business users don't have to select them one by one. If there are use cases in which a certain combination of columns is often selected together, it is recommended that you define them as a set to allow the business users to select all of them in one go.

The following example shows how a set is defined in YAML:

models:
  - name: orders
    description: "Contains order information of each individual order"
    meta:
      label: 'Orders'
      sets:
        - name: basic_order_information
          label: "Basic Order Information"
          description: "Basic transactional information of the order"
          columns: [order_id, customer_id, checkout_date, gross_merchandise_value, shipping_amount, discount_amount]

Last updated