Hi @Scott_Harrison ,
I have purchased Firestore Plugin. I can run sample code you uploaded to gitHub.
But i want to add data with hierarchical Lua table (table inside table).
For example :
firestore.updateData("cities", "LA", {values={ {1,2,3},{4,5,6} } },listener )
When i run this line, it gives runtime error.
I have tried below method as well :
local dataTbl = {}
dataTbl["values] = {}
dataTbl["values][1] = {1,2,3}
dataTbl["values][2] = {4,5,6}
firestore.updateData("cities", "LA", dataTbl, listener )
Can you please help me How can we use this data structure update in Firestore ?
Thank you.
Bhavin