Hi
I'm currently facing an issue related to ListView and Document References in Firestore.
My current situation:
I have a collection ("Owners") that contains an array of Document References linking to another collection ("Properties").
I want to display these referenced documents in a ListView using the array of Document References.
However, it seems that FlutterFlow's "Query Document from Reference" cannot directly handle multiple Document References stored in an array. The available methods support only single-document references or string-type fields.
Could you please confirm if this is indeed the current limitation, or if there's an alternative solution I'm overlooking?
Proposed Solution:
Allow ListView’s "Query Collection" to directly query and retrieve documents from an array of Document References, possibly by introducing an option such as "Array Contains Any" specifically for Document References.
Benefits:
Cleaner Firestore data structure.
Reduced complexity in app logic.
Enhanced productivity and easier maintenance.