I have a meeting
collections with documents like:
{
name: John
date: 1 Jan 2021
time: 10am
meeting note: morning standup
}
I want to get documents with say name=John
, and dates after today.
Since Firestore does not support query using two fields, I suppose I need to get name=John
and filter myself for dates after today? If yes, is there a more efficient and effective way to do that?