So I have a Team and an Event, with a one-to-many relationship and a date column on the Event. What I want to do in SQL is:
select * from events where team_id = :team_id and date > date.now()
How do I accomplish this using firebase web?
So I have a Team and an Event, with a one-to-many relationship and a date column on the Event. What I want to do in SQL is:
select * from events where team_id = :team_id and date > date.now()
How do I accomplish this using firebase web?