I\'m trying to test out Firebase to allow users to post comments using push. I want to display the data I retrieve with the following;
push
fbl.child
For me it was limitToLast that worked. I also found out that limitLast is NOT a function:)
limitToLast
limitLast
const query = messagesRef.orderBy('createdAt', 'asc').limitToLast(25);
The above is what worked for me.