Martin Vandzura
Martin Vandzura

Reputation: 3127

How to get User's table from Firebase events in BigQuery?

I am trying to look at old events based on user's current values. Events from Firebase Analytics are exported in single table together with User data(user data is part of event record). How can I join old event to current user? Is it possible to export User table separately? Thanks!

Upvotes: 0

Views: 1286

Answers (1)

Steve Ganem
Steve Ganem

Reputation: 10851

You can identify a user with either user_dim.app_info.app_instance_id, user_dim.device_info.resettable_device_id or user_dim.user_id. You can read more about these fields in this help center article.

Upvotes: 2

Related Questions