refactor(chalice): added name to user-events

This commit is contained in:
Taha Yassine Kraiem 2025-06-04 10:10:46 +02:00
parent b2de09d487
commit 17f425dbd1

View file

@ -9,7 +9,8 @@ def get_customs_by_session_id(session_id, project_id):
SELECT `$properties`,
properties,
created_at,
'CUSTOM' AS type
'CUSTOM' AS type,
`$event_name` AS name
FROM product_analytics.events
WHERE session_id = %(session_id)s
AND NOT `$auto_captured`