mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-25 02:31:30 +01:00
a07eed7d2e
* Simplify funnel and action query * Fix type errors * Update test_action.py * Move more over to avoid_loop * Simplify query everywhere * Fix black * Fix * Fix everything * Fix black * Fix filtering * Move or join
16 lines
301 B
Python
16 lines
301 B
Python
ACTION_QUERY = """
|
|
SELECT
|
|
events.uuid,
|
|
events.event,
|
|
events.properties,
|
|
events.timestamp,
|
|
events.team_id,
|
|
events.distinct_id,
|
|
events.elements_chain,
|
|
events.created_at
|
|
FROM events
|
|
WHERE {action_filter}
|
|
AND events.team_id = %(team_id)s
|
|
ORDER BY events.timestamp DESC
|
|
"""
|