Firebase Features

What Are the Different ways of Filtering Firebase data?

Limit to First and Last -
·       limitToFirst  - This method is used to returning the specific number of items starting from the first one.
·       limitToLast  - This method is used to returning the specific number of items starting from the last one.

Example -
var fPlayerRef = firebase.database().ref("users/").limitToFirst(1);
var lstPlayerRef = firebase.database().ref('users/').limitToLast(1);

fPlayerRef.on("value", function(data) {
        console.log(data.val());
        }, function (error) {
    console.log("Error: " + error.code);
});

lstPlayerRef.on("value", function(data) {
         console.log(data.val());
    }, function (error) {
    console.log("Error: " + error.code);
});

Stayed Informed - Firebase Tutorial for Android and IOS

I hope you are enjoying with this post! Please share with you friends. Thank you so much!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^