You can certainly write ESQL code that will copy only the relevant fields from the InputRoot.XML to the OutputRoot.XML in a compute node. _________________ I am *not* the model of the modern major general.
SET OutputRoot.XML = InputRoot.XML;
SET OutputRoot.XML.Invoice.Purchases[] =
(SELECT I.Item
FROM InputRoot.XML.Invoice.Purchases.Item[] AS I
WHERE I.Quantity > 1); /* any filter expression */
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum