Skip to content

[auto-build] rolodato-patch-2 -> master #360

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _docs/master/databases/sync-scan.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ LIMIT 0

By default, this query runs against your database during setup and again every hour. This scanning query is fast with most relational databases but can be slower with MongoDB and some [community-built database drivers](../developers-guide/community-drivers). Syncing can't be turned off completely, otherwise Metabase wouldn't work.

Here's the kind of data that syncs get and why:
Here's the kind of data that gets synced and why:

| What | Why |
| ---------------- | -------------------------------------------- |
Expand Down
120 changes: 120 additions & 0 deletions _docs/master/embedding/sdk/api/InteractiveQuestion.html

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions _docs/master/embedding/sdk/api/StaticQuestion.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _docs/master/embedding/sdk/api/assets/navigation.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion _docs/master/embedding/sdk/api/assets/search.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _docs/master/embedding/sdk/api/index.html

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions _docs/master/embedding/sdk/api/snippets/InteractiveQuestion.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
version: master
has_magic_breadcrumbs: true
show_category_breadcrumb: true
show_title_breadcrumb: true
category: Embedding
title: InteractiveQuestion
source_url: 'https://github.com/metabase/metabase/blob/master/docs/embedding/sdk/api/snippets/InteractiveQuestion.md'
layout: new-docs
---

```ts
function InteractiveQuestion(props: InteractiveQuestionProps): Element;
```

A question component with drill-downs enabled.

## Parameters

<!-- [<snippet parameters>] -->

| Parameter | Type |
| :-------- | :-------------------------------------------------------------- |
| `props` | [`InteractiveQuestionProps`](./api/InteractiveQuestionProps) |

<!-- [<endsnippet parameters>] -->

## Returns

<!-- [<snippet returns>] -->

[`Element`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/0b728411cd1dfb4bd26992bb35a73cf8edaa22e7/types/react/jsx-runtime.d.ts#L6)

<!-- [<endsnippet returns>] -->
35 changes: 35 additions & 0 deletions _docs/master/embedding/sdk/api/snippets/StaticQuestion.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
version: master
has_magic_breadcrumbs: true
show_category_breadcrumb: true
show_title_breadcrumb: true
category: Embedding
title: StaticQuestion
source_url: 'https://github.com/metabase/metabase/blob/master/docs/embedding/sdk/api/snippets/StaticQuestion.md'
layout: new-docs
---

```ts
function StaticQuestion(__namedParameters: StaticQuestionProps): null | Element;
```

A question component without drill-downs.

## Parameters

<!-- [<snippet parameters>] -->

| Parameter | Type |
| :------------------ | :---------------------------------------------------- |
| `__namedParameters` | [`StaticQuestionProps`](./api/StaticQuestionProps) |

<!-- [<endsnippet parameters>] -->

## Returns

<!-- [<snippet returns>] -->

\| `null`
\| [`Element`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/0b728411cd1dfb4bd26992bb35a73cf8edaa22e7/types/react/index.d.ts#L4313)

<!-- [<endsnippet returns>] -->
54 changes: 28 additions & 26 deletions _docs/master/embedding/sdk/api/snippets/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,29 +45,30 @@ layout: new-docs

## InteractiveQuestion

| Name | Description |
| :------------------------------------------------------------------------------------------------------------ | :----------------------------------- |
| [DrillThroughQuestionProps](./api/DrillThroughQuestionProps) | Props for the drill-through question |
| [InteractiveQuestionEditorButtonProps](./api/InteractiveQuestionEditorButtonProps) | - |
| [InteractiveQuestionEditorProps](./api/InteractiveQuestionEditorProps) | - |
| [InteractiveQuestionProps](./api/InteractiveQuestionProps) | - |
| [InteractiveQuestionQuestionSettingsDropdownProps](./api/InteractiveQuestionQuestionSettingsDropdownProps) | - |
| [InteractiveQuestionQuestionVisualizationProps](./api/InteractiveQuestionQuestionVisualizationProps) | - |
| [InteractiveQuestionResetButtonProps](./api/InteractiveQuestionResetButtonProps) | - |
| [InteractiveQuestionSaveQuestionFormProps](./api/InteractiveQuestionSaveQuestionFormProps) | - |
| [InteractiveQuestionTitleProps](./api/InteractiveQuestionTitleProps) | - |
| [SdkQuestionProps](./api/SdkQuestionProps) | - |
| [InteractiveQuestionBackButtonProps](./api/InteractiveQuestionBackButtonProps) | - |
| [InteractiveQuestionBreakoutDropdownProps](./api/InteractiveQuestionBreakoutDropdownProps) | - |
| [InteractiveQuestionChartTypeDropdownProps](./api/InteractiveQuestionChartTypeDropdownProps) | - |
| [InteractiveQuestionChartTypeSelectorProps](./api/InteractiveQuestionChartTypeSelectorProps) | - |
| [InteractiveQuestionDownloadWidgetDropdownProps](./api/InteractiveQuestionDownloadWidgetDropdownProps) | - |
| [InteractiveQuestionDownloadWidgetProps](./api/InteractiveQuestionDownloadWidgetProps) | - |
| [InteractiveQuestionFilterDropdownProps](./api/InteractiveQuestionFilterDropdownProps) | - |
| [InteractiveQuestionFilterProps](./api/InteractiveQuestionFilterProps) | - |
| [InteractiveQuestionQuestionSettingsProps](./api/InteractiveQuestionQuestionSettingsProps) | - |
| [InteractiveQuestionSaveButtonProps](./api/InteractiveQuestionSaveButtonProps) | - |
| [InteractiveQuestionSummarizeDropdownProps](./api/InteractiveQuestionSummarizeDropdownProps) | - |
| Name | Description |
| :------------------------------------------------------------------------------------------------------------ | :--------------------------------------------- |
| [InteractiveQuestion](./api/InteractiveQuestion) | A question component with drill-downs enabled. |
| [DrillThroughQuestionProps](./api/DrillThroughQuestionProps) | Props for the drill-through question |
| [InteractiveQuestionEditorButtonProps](./api/InteractiveQuestionEditorButtonProps) | - |
| [InteractiveQuestionEditorProps](./api/InteractiveQuestionEditorProps) | - |
| [InteractiveQuestionProps](./api/InteractiveQuestionProps) | - |
| [InteractiveQuestionQuestionSettingsDropdownProps](./api/InteractiveQuestionQuestionSettingsDropdownProps) | - |
| [InteractiveQuestionQuestionVisualizationProps](./api/InteractiveQuestionQuestionVisualizationProps) | - |
| [InteractiveQuestionResetButtonProps](./api/InteractiveQuestionResetButtonProps) | - |
| [InteractiveQuestionSaveQuestionFormProps](./api/InteractiveQuestionSaveQuestionFormProps) | - |
| [InteractiveQuestionTitleProps](./api/InteractiveQuestionTitleProps) | - |
| [SdkQuestionProps](./api/SdkQuestionProps) | - |
| [InteractiveQuestionBackButtonProps](./api/InteractiveQuestionBackButtonProps) | - |
| [InteractiveQuestionBreakoutDropdownProps](./api/InteractiveQuestionBreakoutDropdownProps) | - |
| [InteractiveQuestionChartTypeDropdownProps](./api/InteractiveQuestionChartTypeDropdownProps) | - |
| [InteractiveQuestionChartTypeSelectorProps](./api/InteractiveQuestionChartTypeSelectorProps) | - |
| [InteractiveQuestionDownloadWidgetDropdownProps](./api/InteractiveQuestionDownloadWidgetDropdownProps) | - |
| [InteractiveQuestionDownloadWidgetProps](./api/InteractiveQuestionDownloadWidgetProps) | - |
| [InteractiveQuestionFilterDropdownProps](./api/InteractiveQuestionFilterDropdownProps) | - |
| [InteractiveQuestionFilterProps](./api/InteractiveQuestionFilterProps) | - |
| [InteractiveQuestionQuestionSettingsProps](./api/InteractiveQuestionQuestionSettingsProps) | - |
| [InteractiveQuestionSaveButtonProps](./api/InteractiveQuestionSaveButtonProps) | - |
| [InteractiveQuestionSummarizeDropdownProps](./api/InteractiveQuestionSummarizeDropdownProps) | - |

## MetabaseProvider

Expand All @@ -83,9 +84,10 @@ layout: new-docs

## StaticQuestion

| Interface | Description |
| :-------------------------------------------------- | :---------- |
| [StaticQuestionProps](./api/StaticQuestionProps) | - |
| Name | Description |
| :-------------------------------------------------- | :---------------------------------------- |
| [StaticQuestion](./api/StaticQuestion) | A question component without drill-downs. |
| [StaticQuestionProps](./api/StaticQuestionProps) | - |

## other

Expand Down
2 changes: 1 addition & 1 deletion _site/docs/master/databases/sync-scan.html
Original file line number Diff line number Diff line change
Expand Up @@ -4877,7 +4877,7 @@ <h2 id="how-database-syncs-work">How database syncs work</h2>

<p>By default, this query runs against your database during setup and again every hour. This scanning query is fast with most relational databases but can be slower with MongoDB and some <a href="../developers-guide/community-drivers">community-built database drivers</a>. Syncing can’t be turned off completely, otherwise Metabase wouldn’t work.</p>

<p>Here’s the kind of data that syncs get and why:</p>
<p>Here’s the kind of data that gets synced and why:</p>

<table>
<thead>
Expand Down
Loading