select created_at, event_type, repo_name, number as issue, action, title, actor_login as actor, labels
from github_events
where event_type = 'IssuesEvent' and repo_name = 'facebook/react' and toDate(created_at) = '2022-03-03'
order by created_at
limit 100;