Hi People, need to know if can implement a text search from two different values in the same document.
Lets say, I have a document like these:
{
"ref": Ref(Collection("Planets"), "267081079730471443"),
"ts": 1590977548370000,
"data": {
"name": "Mercury",
"type": "TERRESTRIAL",
"color": "GREY"
}
},
And I want to apply a text search with any value of the name and type properties.
Is this possible with the ContainsStr function?