Filter firebase data using transform

Hi! I need some help to filter a firebase data

image

I already convert to a map and later into an array

let data = {{ getAllComentariosByUser.data }}
let map = Object.keys(data).map(k => data[k])
let values = formatDataAsArray(map.values())
let customer = {{textInput1.value}}

let filtered = values.filter(row=>
  row.idComercio.startsWith(customer)
)


return filtered

But 0 rows returned

Thanks in advanced!

Hey @gonzalobenaffi!

Happy to help with this. How are you trying to filter your data? /on what condition? And if you expand your data structure further, what do your objects look like?