Using a similar example to that on the polymerfire website, how can I get the information for each of the notes.
If I get a list of notes avaliable like:
<firebase-document
path="/teams/[[teamid]]/notes"
data="{{notes}}"
>
</firebase-document>
The result of that would be a object
f738hfno3oibr39rhr: true
adfagsg35ugho84hoh: true
... etc
What would be the accepted way to get data for each of these notes?
This is what I've got so far but its not working when things get removed or added.
<template is="dom-repeat" items="{{notesComputed}}">
<div>
<!-- Get the data needed for this card -->
<firebase-document
path="/notes/[[item.noteid]]/meta"
data="{{item.meta}}"
></firebase-document>
note that I've converted the notes object direct from firebase to an array so I can use the dom-repeat
Thanks any feedback is appreciated