Open owldesign opened 3 years ago
When I use the update() is there a way to target nested objects?
update()
For example, here is my line item object:
{ id: 4133 nonprofit: { name: "Product 1", message: "message for someone", } price: 10 quantity: 1 }
I wanted to use the update() to change the message within the nonprofit object.
message
nonprofit
Right now the update() only takes "field" key but how can I access that field within the nested object?
I tried doing this but it just add it as a key within the object update(4133, 'nonprofit.message', 10)
update(4133, 'nonprofit.message', 10)
Thanks!
Unfortunately right now deep updates are not possible. Thanks for the suggestion though, I will implement this.
When I use the
update()
is there a way to target nested objects?For example, here is my line item object:
I wanted to use the
update()
to change themessage
within thenonprofit
object.Right now the
update()
only takes "field" key but how can I access that field within the nested object?I tried doing this but it just add it as a key within the object
update(4133, 'nonprofit.message', 10)
Thanks!