How to save data in firestore error in gdevelop 5 beta110?

Hi. Im trying to make a game profile but online but there is a problem.
I cant write documents in collections.
like the user collection i cant create a document in it!
notheing changes

it does not have to do with the rules or anything cuz here is my rule:
“”"
rules_version = ‘2’;
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow create, read, write, update, delete : if true;
}
}
}
“”"
i seem to get well in this page but then it does not have the Queries commands!
help me

Can you check the error message in the status callback variable? Also, queries have only be added for beta 111 and above, you’ll have to wait for it to release to use them.

but here the problem there is no error

so you see if i did :
write a documet in firestore it will do nothing
and if i will do 2 off write a field in firestore it will do the first one but the second one will do nothing