From f03d89da849901db50b05fdb69ff49c55f1c6756 Mon Sep 17 00:00:00 2001 From: Doug Beatty <44704949+dbeatty10@users.noreply.github.com> Date: Mon, 29 Jul 2024 10:28:11 -0600 Subject: [PATCH] Example of using the "config" selection method for `meta` --- website/docs/reference/node-selection/methods.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/docs/reference/node-selection/methods.md b/website/docs/reference/node-selection/methods.md index 903790100fb..438847c6d5b 100644 --- a/website/docs/reference/node-selection/methods.md +++ b/website/docs/reference/node-selection/methods.md @@ -133,6 +133,7 @@ For example, given a model with the following configurations: materialized = 'incremental', unique_key = ['column_a', 'column_b'], grants = {'select': ['reporter', 'analysts']}, + meta = {"contains_pii": true}, transient = true ) }} @@ -144,6 +145,7 @@ select ... dbt ls -s config.materialized:incremental dbt ls -s config.unique_key:column_a dbt ls -s config.grants.select:reporter +dbt ls -s config.meta.contains_pii:true dbt ls -s config.transient:true ```