shafnaz
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])...
**Describe the bug** I would like to store my enumerator types as keys in the dictionary and do an add_document.  
It works in _input(). But is there a way to have it work in _gui_input?   
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")...