samuk190 / localbase

A Firebase-Style Database ... Offline!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

get function returning object instead of array.

daniel329paul opened this issue · comments

get function is returning first document in the collection instead of fetching all the documents.
query:-
db.collection("app_bar").get()

output:-
{ "bot_name": "Tomato", "bot_icon": "data:image/png;base64,iVBOR", "bot_type": "External" }

Kindly help, what is the reason for this to happen. im using my own custom keys. keys are string.

db.collection('app_bar').doc(e.bot_name).set(e);

I have the exact same problem.
When fetching multiple times, it's fetching the collection correctly most of the times, only sometimes it returns the first document of the collection.

I was facing this issue when using async/await to handle promises on local base. But when I started using .then() i didn't get those issues.

Same happening here. using await.

If you have same issue on current release please make another issue.