Hello everyone,
I'm utilizing Firebase to create users, each having various fields such as experience, age, body type, ethnicity, and more.
Since Algolia's search feature in FF only supports text search, I've implemented a custom action to perform this search. It's functioning well, allowing me to retrieve filtered data.
Using this data, I generate a ListView of cards containing the user's last name, first name, and profile picture. The cards are clickable, enabling users to open the profile and view all available information.
I pass multiple pieces of information to these cards:
My concern revolves around the "ID." I require the user's UID to retrieve all the information from Firebase by creating a Document Reference. However, I am facing challenges in binding the UID from Algolia to a user reference. I attempted using a data type, but I am still encountering errors.
Did I make a mistake in my approach, or is my logic not suitable for what I am attempting to achieve?