superset_dataset_list
List Superset datasets with pagination, filtering, and ability to fetch all. Use it to discover current dataset IDs before fetching details.
Instructions
List Superset datasets with pagination.
A dataset is a reference to a table/view or a virtual SQL query in Superset. IMPORTANT: always call before dataset_get to discover current IDs.
Args: page: Page number (starting from 0). page_size: Number of records per page (max 100). q: RISON filter for searching. Examples: - By name: (filters:!((col:table_name,opr:ct,value:search_term))) - By schema: (filters:!((col:schema,opr:eq,value:public))) - By database: (filters:!((col:database,opr:rel_o_m,value:1))) get_all: Fetch ALL records with automatic pagination (ignores page/page_size).
Returns: JSON string with the list of datasets.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | ||
| page | No | ||
| get_all | No | ||
| page_size | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |