Skip to main content
This parameter can’t be used if included_views is in use.
Defines a list of views from the database schema to include in the model. Views that aren’t included can’t be referenced when modeling.

Syntax

# Values can be provided as an indented list
included_views:
  - users
  - main.products
  - main__customers

# Or as a comma-delimited list
included_views: [users, products]
Each value provided to this parameter must be the name of a view in the database connection:
  • Fully-qualified view names (<schema>.<view> or <schema>__<view>) are supported.
  • Use wildcard syntax (\*) to match multiple views within a schema

Examples

included_views:
  - users
  - main.products
  - main__customers