wixData query against array of correct values

@philip4554 The data type of the values in that array is text, so they need to have quotes around them. Also, hasSome is the function to use for this purpose.

selPOIs = ["Refuge","Snack Bar","Glacier","Waterfall","Lake"];
wixData.query("PointsofInterest") 
.hasSome("type",selPOIs) 
.find()