This documentation is for the unstable version of GoodData, currrently in development.
For stable version, go to the latest stable version of this article.

Workspace Data Filters

Manage workspace data filters.

See Set Up Data Filters in Workspaces to learn how workspace data filters work in GoodData.

Methods

Example

from gooddata_sdk import GoodDataSdk
from pathlib import Path

# GoodData base URL, e.g. "https://www.example.com"
host = "https://www.example.com"
# GoodData user token
token = "some_user_token"
sdk = GoodDataSdk.create(host, token)

declarative_workspace_filters = sdk.catalog_workspace.get_declarative_workspace_data_filters()
len(declarative_workspace_filters.workspace_data_filters)