Does the firebase-element support the new Firebase Richer Query Capabilities or does it need to be updated? See https://www.firebase.com/blog/2014-11-04-firebase-realtime-queries.html for announcement.
Example from (https://www.firebase.com/blog/2014-11-04-firebase-realtime-queries.html) var ref = new Firebase("https://dinosaur-facts.firebaseio.com/"); ref.orderByChild("height").on("child_added", function(snapshot) { console.log(snapshot.key() + " was " + snapshot.val().height + " meters tall"); }); Another example from (https://www.firebase.com/blog/2014-11-04-firebase-realtime-queries.html) var ref = new Firebase("https://dinosaur-facts.firebaseio.com/"); ref.orderByChild("height").startAt(3).on("child_added", function(snapshot) { console.log(snapshot.key()) }); Follow Polymer on Google+: plus.google.com/107187849809354688692 --- You received this message because you are subscribed to the Google Groups "Polymer" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/7a560412-09a6-4957-930c-5a95ae9cf2b8%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
