Notice that there is a null in the textContainers list. Desired behaviour is for deleting the Phrase to remove it from the list, or at the very least for the API to just ignore null references.
EDIT: The problem I have now is that I have no idea how to remove that null reference from the list. So the data is effectively corrupted as a result of this simple operation.
This is a problem I'm experiencing in 20.03, I'm assuming it's still an issue in Outserv.
Example:
If I run
deletePhrase()
to delete one of thePhrase
objects referenced in theParagraph.textContainers
union list, then the API returns the following:Notice that there is a
null
in thetextContainers
list. Desired behaviour is for deleting thePhrase
to remove it from the list, or at the very least for the API to just ignore null references.EDIT: The problem I have now is that I have no idea how to remove that
null
reference from the list. So the data is effectively corrupted as a result of this simple operation.This is a problem I'm experiencing in 20.03, I'm assuming it's still an issue in Outserv.