You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Firestore there's a Reference data type. When a document that contains references fields is bound by Vuefire, then Vuefire, under the hood, queries all referenced documents and converts referencecs into actual data. This is a nice feature but it has some negative implications:
The reference is lost. We no longer have an access to it.
It performs additional queries, that might be inefficient when large collections are queried.
So it would be great if this behaviour could be configured, or at least if references were not lost - maybe refernces could be added as an non-enumerable properties (the same way as documents' ids are added to objects)?
The text was updated successfully, but these errors were encountered:
In Firestore there's a Reference data type. When a document that contains references fields is bound by Vuefire, then Vuefire, under the hood, queries all referenced documents and converts referencecs into actual data. This is a nice feature but it has some negative implications:
So it would be great if this behaviour could be configured, or at least if references were not lost - maybe refernces could be added as an non-enumerable properties (the same way as documents' ids are added to objects)?
The text was updated successfully, but these errors were encountered: