How can i search Firebase
for properties that contain a string?
e.g user post's have descriptions that might say
"a red t-shirt" "a blue belt" "a silver belt buckle"
How could I search each post for text that says "belt
" to find everything that has been posted about belts.
It seems Firebase
only has .equalTo(String)
and not .contains(String)
Can anyone help?