So, I have this firestore that looks like the picture below. How can I query the arrays that I highlighted only to javascript format?
How the Getting started with firestore does is by using [array-contains](https://firebase.google.com/docs/firestore/query-data/queries#:~:text=const%20q%20%3D%20query(citiesRef%2C%20where(%22regions,array_contains_filter.js) which looks like this as their example:
const q = query(citiesRef, where("regions", "array-contains", "west_coast"));
but what I see is that it only displays the word 'west_coast', what I want is that it will display any information in the field called 'amount' and 'title' as the picture above