Hello, everyone!
I have a problem: how to add new IDs to existing ID values without rewriting the string? Now I have a problem that when I add new values, the values that were written are deleted.
Please tell me how to fix it, thanks!
I have a problem: how to add new IDs to existing ID values without rewriting the string? Now I have a problem that when I add new values, the values that were written are deleted.
Please tell me how to fix it, thanks!
You first need to “Get a database item” so you can add the current value to the new value.
Looks like you want to merge arrays, not add single items to the array.
array + array : use merge
array + item (+ item) : use add
Thanks! It work now!