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
final fireStoreApi = FirestoreApi(client.client);
late final _root = fireStoreApi.projects.databases.documents;
final documents = await _root.get(
"PARIS+PLUS",
);
It returns 404 not found but the value actually exists and can be viewed in firebase console
I checked on frontend frame, the document is read successfully, so this is an issue with this package
The text was updated successfully, but these errors were encountered:
create a document with ID "PARIS+PLUS";
Use read the document with the same ID
final fireStoreApi = FirestoreApi(client.client);
late final _root = fireStoreApi.projects.databases.documents;
final documents = await _root.get(
"PARIS+PLUS",
);
It returns 404 not found but the value actually exists and can be viewed in firebase console
I checked on frontend frame, the document is read successfully, so this is an issue with this package
The text was updated successfully, but these errors were encountered: