Morning All, QQ, in the experiment analysis modal ...
# announcements
b
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
yes, if that’s how your database is storing that name
you can do
experimentId as experiment_id
in the query
b
Got it Thanks 🙌