Skip to main content
Topics created from data input tables or uploaded CSV/XLSX files can’t be joined to other data.
Declares other views as part of the topic. To include multiple tables, nest the table under the table it joins through.
The final table in each node - specifically, those without children - requires an empty bracket pair {}

Syntax

joins:
  <view_name>:
    <nested_view_name>: {}
  <another_view_name>: {}

Properties

joins
object
A nested object structure that declares which views to include in the topic. Views are nested under the views they join through. Final views in each branch must end with an empty object {}.

Examples

joins:
  inventory_items:                  # Includes inventory_items in the topic
    products:                       # Joins products to inventory_items
      distribution_centers: {}      # Joins distribution_centers to products
  users: {}                         # Includes users in the topic