Sasha Bratyshkin
07/15/2025, 3:54 PMChris Potts
07/15/2025, 1:52 PMClément Contamine
07/14/2025, 8:22 PMvariable
to be able to dynamically change the definition of some metrics based on a filter (cf exemple below).
This is something I am used to us in Looker Studio (is it something working on Gooddata)?
SELECT CASE
WHEN $(ComparisonType) = "Previous Period" THEN
(
SELECT SUM({fact/revenue})
-
SELECT SUM({fact/revenue}) FOR PreviousPeriod({date.period})
)
/
SELECT SUM({fact/revenue}) FOR PreviousPeriod({date.period})
WHEN $(ComparisonType) = "Previous Year" THEN
(
SELECT SUM({fact/revenue})
-
SELECT SUM({fact/revenue}) FOR PreviousPeriod({date.year})
)
/
SELECT SUM({fact/revenue}) FOR PreviousPeriod({date.year})
ELSE NULL
END
Jon Mongan
07/14/2025, 6:28 PMChris Potts
07/14/2025, 3:47 PMVivek Kushwaha
07/14/2025, 10:06 AM/api/v1/entities/users?page=${page}&size=20&metaInclude=page,ALL
)
2. Fetch user data from our database.
3. Patch the updated emails: gooddataApi.patch(/api/v1/entities/users/${userId}
, payload)
payload = {
data: {
attributes: {
email
},
id: userId,
type: 'user'
}
}
Before I run this in production, I’d like to back up all existing user data.
Is there an export feature or recommended way to back up all users from wizehive-zengine.cloud.gooddata.com?
Thanks in advance for any guidance!Chris Potts
07/11/2025, 2:36 PMDylan Conley
07/11/2025, 1:35 PMDylan Conley
07/11/2025, 1:34 PMMichael Gray
07/09/2025, 3:10 PMRyan Peters
07/08/2025, 5:02 PMEvangelos Malandrakis
07/08/2025, 11:31 AM500 Server Error: Internal Server Error
when trying to export PDFs via the API (Note: Exporting via the UI for the same WS and dashboard works as expected).
An example of a failed request below:
<https://data.park46.se/api/v1/actions/workspaces/sbb/export/visual/cbcd0ea2d3620de94873d4090a8c1bf2f63ff367>
Can you please check it out?Jhonatan Teixeira
07/07/2025, 3:54 PMapiTokenAuthentication
as the Analytics editor (currently we authenticate the IFRAME using JWT token) ?Anant Dalela
07/03/2025, 7:29 PMChris Potts
07/03/2025, 2:15 PMChris Potts
07/03/2025, 1:32 PMChris Potts
07/03/2025, 1:17 PMCian Cullinan
07/03/2025, 9:38 AMSunil Katkar
07/02/2025, 1:48 PMimport React from "react";
import { InsightView } from "@gooddata/sdk-ui-ext";
import { backend } from "./gooddataBackend";
import { ErrorComponent, LoadingComponent } from "@gooddata/sdk-ui";
function Widget() {
const WORKSPACE_ID = '16dc08728a664c6f111a219ffa86058d';
const WIDGET_ID = '08a304f9-5269-4fb6-8c36-ea1eef6c0aa4';
console.log("Backend:", backend);
console.log("Workspace:", WORKSPACE_ID);
console.log("Insight:", WIDGET_ID);
return (
<div style={{ padding: 40 }}>
<h2>GoodData Chart Widget</h2>
<InsightView
insight={WIDGET_ID}
backend={backend}
workspace={WORKSPACE_ID}
LoadingComponent={LoadingComponent}
ErrorComponent={ErrorComponent}
/>
</div>
);
}
export default Widget;
Below is issue am facing after integration,
CorrelationContext.tsx:94
Uncaught TypeError: effectiveBackend.withCorrelation is not a function
at CorrelationContext.tsx:94:1
at useBackendWithCorrelation (CorrelationContext.tsx:90:1)
at useBackendWithVisualizationCorrelation (InsightView.tsx:289:1)
at InsightView (InsightView.tsx:268:1)
Widget.js:10 Backend:
BackendWithDecoratedServices {capabilities: {…}, config: {…}, decorated: TigerBackend, factories: {…}}
Widget.js:11 Workspace: 16dc08728a664c6f991a219ffa86058d
Widget.js:12 Insight: 08a304f9-3239-4fb6-8c36-ea1eef6c0aa4
CorrelationContext.tsx:94
Uncaught TypeError: effectiveBackend.withCorrelation is not a function
at CorrelationContext.tsx:94:1
at useBackendWithCorrelation (CorrelationContext.tsx:90:1)
at useBackendWithVisualizationCorrelation (InsightView.tsx:289:1)
at InsightView (InsightView.tsx:268:1)
react-dom.development.js:18687
The above error occurred in the <InsightView> component:
at InsightView (<http://localhost:3000/static/js/bundle.js:977268:19>)
at div
at Widget
at RenderedRoute (<http://localhost:3000/static/js/bundle.js:629264:5>)
at Routes (<http://localhost:3000/static/js/bundle.js:629754:5>)
at AppRoutes (<http://localhost:3000/static/js/bundle.js:264:56>)
at Router (<http://localhost:3000/static/js/bundle.js:629692:15>)
at BrowserRouter (<http://localhost:3000/static/js/bundle.js:627881:5>)
at div
at AppProvider (<http://localhost:3000/static/js/bundle.js:156:5>)
at App (<http://localhost:3000/static/js/bundle.js:42:78>)
Consider adding an error boundary to your tree to customize error handling behavior.
Visit <https://reactjs.org/link/error-boundaries> to learn more about error boundaries.
CorrelationContext.tsx:94
Uncaught TypeError: effectiveBackend.withCorrelation is not a function
at CorrelationContext.tsx:94:1
at mountMemo (react-dom.development.js:17225:1)
at Object.useMemo (react-dom.development.js:17670:1)
at useMemo (react.development.js:1650:1)
at useBackendWithCorrelation (CorrelationContext.tsx:90:1)
at useBackendWithVisualizationCorrelation (InsightView.tsx:289:1)
at InsightView (InsightView.tsx:268:1)
at renderWithHooks (react-dom.development.js:16305:1)
at mountIndeterminateComponent (react-dom.development.js:20074:1)
at beginWork (react-dom.development.js:21587:1)
Could you please suggest what might be going wrong here?Chris Potts
07/01/2025, 3:55 PMSheetal Popat
07/01/2025, 3:09 PMSunil Katkar
07/01/2025, 11:12 AMAlson Yap
06/28/2025, 9:04 AMMichael Ullock
06/26/2025, 2:15 PMDoug Creighton
06/26/2025, 1:49 PMJoaquim Grilo
06/26/2025, 1:10 PMJhonatan Teixeira
06/26/2025, 9:47 AMgd-ai-assistant
release, is there anyone specialist in this area available to help?Tim Cashion
06/23/2025, 6:12 PMTim Cashion
06/23/2025, 5:14 PMInvariant Violation: Item attribute.business_date.day was not found in cache.
Our yaml file has this for the filter:
filter_by:
business_date.day_filter:
type: attribute_filter
using: attribute/business_date.day
Naveen Chaurasia
06/20/2025, 1:41 PM