115 results found
-
Allow String to Timestamp conversion in Firestore rules
In Firestore rule, it could be very powerful to convert String containing date to Timestamp. For example, the RevenueCat extension store date as ISO 8601 string and we can't use them in firestore rule because date are not Timestamp.
In my Firestore rule, I would like to do something like :
timestamp.parse(collection.data.expires_date) > request.time
24 votes -
🔥🗑️ Desaster recovery for full firebase project
It would be great to have a daily disaster recovery feature for the entire Firebase project, not just Firestore. Rollouts can corrupt auth objects or storage files (e.g. user images), and while Storage backups can be automate (e.g. via Transfer Service), there's no built-in way to automatically back up and restore Firebase Auth. Ideally, there would be a "Timeline" tab in the console, allowing you to rollback the full project—Auth, Firestore, Storage, or any other service used —to any recent daily snapshot, with of course costs depending on read/write/storage usage. This would significantly improve safety and confidence during production changes.…
3 votes -
3 votes
-
3 votes
-
View Firestore Total Space Used
Currently, billing/usage only shows usage for reads/writes/deletes. We are also being billed for total storage space. Can you please add observability into how much space is currently being used across each Firestore Database?
7 votes -
Is anyone else unable to sign into the support page?
Whenever trying to sign into the support page to log an issue the page refreshes but does not sign me or my coworkers in, is anyone else experiencing this issue? I have been unable to find any support from firebase, hoping this gets some traction.
3 votes -
Speed up Firestore Index Creation
I absolutely love the fact how firebase handles non-existing indexes with a link to the creation of an index.
I also understand, that building the index, even for an empty database takes a couple of minutes, but maybe there is something you can do to speed up the process.7 votes -
336 votes
-
import
Firestore look like a hobby project. No import export facility to bring data from other database server like Mysql, Postgre, etc.
This prevent it from being used for serious application development and any developer will not recommend it to use.
Also there is no facility to run queries to see data, group by,and all those things.
Developer will not recommend it unless all these basic things are available.
1 vote -
Cloud Firestore with multitenant, how the implement Firestore in Datastore mode
That Cloud Firestore soport multitenat how the implement
Firestore in Datastore mode allows a multitenant application to use separated silos of data for each tenant.1 vote -
C# Blazor SDK
Firestore has an C# SDK for unity. It would be nice if the C# SDK supported .NET Standard or .NET Core without any interop in C++ so that it could be used within Blazor WASM web applications.
2 votes -
Continent
Support multi-region across different continents.
1 vote -
onDisconnect for firestore (user presence)
https://firebase.google.com/docs/firestore/solutions/presence
We have a workaround by using Realtime Database, but if you don't work realtime databases in your app, this seems inefficient and cumbersome. I'd like to see a native method for Firestore that offers this functionality. Perhaps offer a onSnapshot.disconnect hook.
45 votes -
Export / Import single document on firestore console
Please add an option to export or import a single document from firestore console in firebase page, not in gcloud. Same way like we can do on firebase database export and import a json file with the data.
1 vote -
Request Query Parameters for Security Rules
Introduce a request.query.parameters object to store key-value pairs from the query payload, enabling conditional access control based on user authentication state.
Current workarounds, like nesting documents in sub-collections, restrict uniqueness to a single field. This proposal allows queries to be filtered dynamically based on multiple conditions.
For example, access can be restricted based on user authentication state or location.
if request.query.parameters.user == request.auth.uid if request.query.parameters.location == request.auth.token.region if request.query.parameters.email != null if request.query.parameters.email == request.auth.email
Privileged searches can be enabled with conditions such as:
if request.query.parameters.key == request.auth.token.vipkey
Range queries can be implemented using a function object to validate if…
1 vote -
1 vote
-
Firestore collection group query on document id
Currently, you cannot use Fieldpath.document_id for collection group queries, which is rather shameful considering you can do that in Firebase UI.
Relevant StackOverflow: https://stackoverflow.com/questions/56188250/how-to-perform-collection-group-query-using-document-id-in-cloud-firestore
3 votes -
Daily usage limitation chart
We were keep getting the Firestore Quota message tough the usage was just 2% in our billing.
After reaching out to the Firebase team, we found out that there are also daily limitations for each action (Read, Write,..) that was hidden in google cloud console.The suggestion is to make the daily limitation chart visible in Firebase, as this error is effecting the users directly.
3 votes -
Vector embedding search should include distance in results
The newly released capability is https://firebase.google.com/docs/firestore/vector-search is working very nicely! However, all similar products should return the distance metric in the query results (which the backend has no doubt already calculated) so that the client perform further analysis based on that distance
9 votes -
Geohashing examples for firestore Python Admin SDK
I have read this article https://firebase.google.com/docs/firestore/solutions/geoqueries in mentions cool examples on how to implement Geohashes, but I can't find python examples. Is there a recommended way of implementing geohashes on Firebase Admin SDK for python?
2 votes
- Don't see your idea?