Hi, I would like to load a list of documents from Firebase, but only with specific "ID"s.
Firebase automatically gives the document "ID" when I create it from FF using (create document) but it doesn't create a value with the "ID" in the document, so I can't refer to this value when filtering the ListView. In the "users" collection generated automatically by firebase after authentication, it is correct, Firebase creates a new document and adds the "ID" value to it, where it rewrites the name of the document.
If I add a new field in my Schema and name it "document ID" it will not match the real "ID" generated by Firebase.
I do not know if I will not write a command in Firebase that, after creating a new document, creates the "Document ID" value for it and rewrites the automatically generated "ID".
But should that be the case? Isn't there a better way? I'm asking because I'm not a programmer and I don't want to reinvent the wheel :)