mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
cecb7510b8
* small tweaks and reorganize session queries * move all queries to query folder
10 lines
286 B
Python
10 lines
286 B
Python
STEP_ACTION_SQL = """
|
|
arrayFilter(
|
|
(timestamp, event, random_event_id) ->
|
|
{is_first_step} AND
|
|
(team_id = {team_id}) AND
|
|
random_event_id IN ({actions_query}) {filters}
|
|
, timestamps, eventsArr, event_ids
|
|
)[1] AS step_{step}
|
|
"""
|