I have an array I want to append to in my dynamo table, currently I can't do this with DynamoDBMapper.save(). I first have to read the row out of dynamo, append to the array in memory, and then save ...
var x = [] setget test func _ready(): x.append("henlo") print(x) # "henlo" func test(val): print(val) # does not print I'm not sure whether this is an intended behavior or not. Could either solve by ...