You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECTdata.commit.collection AS event, count() AS count FROM bluesky GROUP BY event ORDER BY count DESC;
SELECTdata.commit.collection AS event, count() AS count, uniqExact(data.did) AS users FROM bluesky WHEREdata.kind='commit'ANDdata.commit.operation ='create'GROUP BY event ORDER BY count DESC;
SELECTdata.commit.collection AS event, toHour(fromUnixTimestamp64Micro(data.time_us)) as hour_of_day, count() AS count FROM bluesky WHEREdata.kind='commit'ANDdata.commit.operation ='create'ANDdata.commit.collection in ['app.bsky.feed.post', 'app.bsky.feed.repost', 'app.bsky.feed.like'] GROUP BY event, hour_of_day ORDER BY hour_of_day, event;
SELECTdata.did::String as user_id, min(fromUnixTimestamp64Micro(data.time_us)) as first_post_ts FROM bluesky WHEREdata.kind='commit'ANDdata.commit.operation ='create'ANDdata.commit.collection ='app.bsky.feed.post'GROUP BY user_id ORDER BY first_post_ts ASCLIMIT3;
SELECTdata.did::String as user_id, date_diff( 'milliseconds', min(fromUnixTimestamp64Micro(data.time_us)), max(fromUnixTimestamp64Micro(data.time_us))) AS activity_span FROM bluesky WHEREdata.kind='commit'ANDdata.commit.operation ='create'ANDdata.commit.collection ='app.bsky.feed.post'GROUP BY user_id ORDER BY activity_span DESCLIMIT3;