shafnaz

Results 5 issues of shafnaz

**Describe the bug** `nextPageValue `only returns a string **To Reproduce** ``` func query_collection_list(): var add_task : FirestoreTask = Firebase.Firestore.list(firestore_collection_id, 3) var task_result = yield(add_task, "task_finished") print("result: ", task_result[task_result.size() - 1])...

bug

**Describe the bug** I would like to store my enumerator types as keys in the dictionary and do an add_document. ![image](https://github.com/GodotNuts/GodotFirebase/assets/37254287/816a0f87-76e0-4e87-9148-74c28b716d9e) ![image](https://github.com/GodotNuts/GodotFirebase/assets/37254287/10fbb511-a86d-4e29-a801-07592ab2dd12)

bug

It works in _input(). But is there a way to have it work in _gui_input? ![image](https://github.com/Federico-Ciuffardi/GodotTouchInputManager/assets/37254287/19883d17-2732-47b7-9846-79e9483e8435) ![image](https://github.com/Federico-Ciuffardi/GodotTouchInputManager/assets/37254287/1e494bf2-07c4-45f6-a66f-dc138c944698) ![image](https://github.com/Federico-Ciuffardi/GodotTouchInputManager/assets/37254287/3da19757-5c67-4c5b-a9e0-98c79d00525c)

Passing array of strings resulted in 400 error. ``` 400 Invalid value at 'structured_query.select.fields[0]' (type.googleapis.com/google.firestore.v1.StructuredQuery.FieldReference), "total_score" Invalid value at 'structured_query.select.fields[1]' (type.googleapis.com/google.firestore.v1.StructuredQuery.FieldReference), "username" ``` This change fixes the error.

I got errors trying to use an array in the select() function of FirestoreQuery func get_top10_total_scores(): # create a query var query: FirestoreQuery = FirestoreQuery.new() # FROM a collection query.from("player_data")...

bug