-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dagster-looker] Add ability to filter incoming dashboards, models (#…
…25522) ## Summary Adds the ability to filter incoming dashboards and models to the Looker API resource loading method. ```python load_looker_asset_specs( looker_resource, looker_filter=LookerFilter( dashboard_folders=[["my_folder", "my_subfolder"]], only_fetch_explores_used_in_dashboards=True, ), ) ``` The optional `LookerFilter` object can include config to only fetch dashboards from specific folder paths, and also whether to optionally only fetch explores that dashboards reference. ## Test Plan New unit test.
- Loading branch information
Showing
5 changed files
with
160 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters