I can not filter my fire base data with current user name or id :(

// iget all table data i need just the one how insert the order not all users order :frowning:

this.fetchRamassage()

let employeesRes = this.ramassageService.getRamassageList()

    employeesRes.snapshotChanges().subscribe(res =>{



      this.employees=[]

      res.forEach(item=>{

        let a = item.payload.toJSON()

        a['$key'] = item.key

        this.employees.push(a as Ramassage)

      })

    

    })

}

fetchRamassage(){

this.ramassageService.getRamassageList().valueChanges().subscribe(res => {

  console.log(res)

 

} )

}