generated from amazon-archives/__template_Apache-2.0
-
Couldn't load subscription status.
- Fork 38
Open
Labels
enhancementNew feature or requestNew feature or request
Description
At the moment, it is possible to identify a row and delete the full row based on various identifier types - but not when nested within arrays.
Let's take the following example:
{ "foo": "bar", "list": [{ "customer_id": 12345 }, { "customer_id": 23456 } ]}
{ "foo": "baz", "list": [{ "customer_id": 23456 }, { "customer_id": 34567 } ]}
A desired output for deleting list.customer_id=23456 would be rewriting all the relevant rows when that would happen:
{ "foo": "bar", "list": [{ "customer_id": 12345 }]}
{ "foo": "baz", "list": [{ "customer_id": 34567 }]}
Pending questions:
- What's the desired output of an array becoming empty? Leaving it empty or full row deletion?
dkushari
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request