I saw this Firebase blog post explaining the best way to create relational data objects using my platform. I am struggling to translate these concepts into AngularFire, their integration with the AngularJS platform.
In particular, I am trying to display two related datasets that have a one-way pointer reference, similar to the way they described this in this example from their post:
var commentsRef = new Firebase("https://awesome.firebaseio-demo.com/comments"); var linkCommentsRef = new Firebase("https://awesome.firebaseio-demo.com/links/comments"); linkCommentsRef.on("child_added", function(snap) { commentsRef.child(snap.name()).once("value", function() {
Question: Is it possible if the current integration with AngularFile makes pointer-type links to other data objects? And if so, can you give an example?
Edit: I feel that I can solve these problems if I can just access the unique identifiers generated by AngularFire for my data [see below]. How do I access them?

source share