hansva commented on issue #5781:
URL: https://github.com/apache/hop/issues/5781#issuecomment-3384770839

   I'm afraid to tell you it works as expected and you will have to tackle this 
differently.
   The best way to work around this is to use following selector for your 
subleaf `[{"SubLeaf":"SubLeaf-Two"}]` and then parse the content further in a 
next json input.
   The option to return null on default leaf only works on the same root level.
   For example disabling that option will make this structure fail:
   ```
   {
     "value": [
       {
         "Leaf": "Leaf-One",
         "SubLeaf": [{ "SubLeaf": "SubLeaf-One" }]
       },
       {
         "Leaf": "Leaf-Two",
         "SubLeaf": [{ "SubLeaf": "SubLeaf-Two" }]
       },
       {
         "Leaf": "Leaf-Three"
       }
     ]
   }
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to