Hello there,
I have a problem when using arrays in firebase. I am trying to have a simple array of strings. But when creating or updating a document I always get data like this inserted into the database:
{
“arrayValue”: {
“values”: [
{
“mapValue”: {}
}
]}}
While it should looks like this:
{
“arrayValue”: {
“values”: [
{
“stringValue”: “TEST_VALUE_HERE”
}
]}}
I tryed everything I could think of. Changing “Field Structure” and “Output Format” dose not seem to do anything. I can get it to display existing entys correctly, but updating or inserting always puts the same faulty entry into the database.
I am sure that I’m only making a small error here and that it’s an easy fix. I just can’t think of anything else to try.
If anyone can help me with this or has an idea that I could try, I would appriciate it a lot
Thank you in advance!