Is it possible to use dom-repeat
to perform multiple <firebase-query>
and aggregate the results in an array using Observers? Such as:-
<template is="dom-repeat" items="[[queryUser]]">
<firebase-query id="queryDetail_[[index]]"
path="/users/[[item.$key]]/detail"
start-at="2017-01-01"
order-by-child="timestamp"
data="{{queryDetail.[[index]]}}">
</firebase-query>
</template>
observers: [
'_queryDetailChanged(queryDetail.*)',
]
The above code obviously doesn't work, it's just to demostrate the idea. Thanks!