https://www.growthbook.io/ logo
b

broad-continent-77439

10/11/2022, 8:22 AM
Morning All, QQ, in the experiment analysis modal it says "Will match against the
experiment_id
column in your data source" and as in the React SDK I am sending the event as
Copy code
trackEvent("Experiment Viewed", {
      experimentId: experiment.key,
      variationId: result.variationId,
    });
do I need to change
experimentId
to
experiment_id
so it can track? Thanks.
f

fresh-football-47124

10/11/2022, 8:30 AM
yes, if that’s how your database is storing that name
you can do
experimentId as experiment_id
in the query
b

broad-continent-77439

10/11/2022, 9:05 AM
Got it Thanks 🙌