0
firebase.database().ref('feeds').once('value').then((snapshot) => {
let feeds = []
snapshot.forEach((childItem) => {
feeds.push({
key: childItem.key,
id: childItem.val().id,
id_user: childItem.val().id_user,
url: childItem.val().url,
date_posted: childItem.val().date_posted,
name: childItem.val().name,
avatar:childItem.val().avatar,
like_count: childItem.val().like_count,
is_liked: childItem.val().is_liked,
//comments: childItem.comments
})
})
The search I’m doing is returning id_user
Wagner edit your question and post this information there
– novic