I want to order by timeStamp the comments inside the comments
node, get the last 15 messages starting with KsBazxx0bew6UOfUI5J
which is a child of the comments
node. I´m trying to get the comments using the following code:
FirebaseRef.orderByChild("timeStamp").startAt(commentID).limitToLast(15).addChildEventListener(likeOrCommentsListener);
unfortunetly I'm not able to get any information, which makes me think that the query is wrong. How can I get the messages using those restrictions?