What you're looking for is called startAt
, which starts at a given node and then returns all nodes until the end (or until the endAt
condition you added).
So something like:
ref.orderByChild("date").startAt("19/11/2020 @ 19:50:29")
Note that your date format is not great for this type of sorting. You might want to consider a date format where the lexicographical order is chronological too, such as "2020-11-19T19:50:29"
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…