How to Inherit Parameters in Mixpanel Custom Events from SDK Events
Given: A view_page event is set up via the Client-Side SDK, which triggers on every page load and sends Mixpanel's default parameters such as $distinct_id, $device_id, and $current_url. When: In the Mixpanel interface's Insight Report, when selecting a Metric, the "Custom Event" feature is used to define a new event view_analytics_report based on the condition that the event view_page has a $current_url containing /dashboard/analytics OR /dashboard/organicTraffic. (Note: This event is not set up through the Client-Side SDK but is created post-processing within Mixpanel.) Then: When checking the view_analytics_report Custom Event in Mixpanel's Lexicon feature, it does not inherit the event parameters from the original view_page event, such as $distinct_id, $device_id, and $current_url. Question: How can the post-processed Custom Event view_analytics_report in Mixpanel also inherit the event properties and their values such as $distinct_id, $device_id, and $current_url from the orgianl view_page event triggered by the Client-Side SDK?