refactor(chalice): added name to user-events

This commit is contained in:
Taha Yassine Kraiem 2025-06-04 10:10:46 +02:00 committed by Kraiem Taha Yassine
parent 1f28300d05
commit c3585309ff

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`