Maxim Bastrygin
06/13/2024, 11:59 AM"value": "{{jsonPath request.body '$.values.list_of_values[0].prefix' + '$.values.list_of_values[0].value'}}"
Lee Turner
06/13/2024, 12:59 PMjsonPath
in that way. I guess a simple solution would be:
"value": "{{jsonPath request.body '$.values.list_of_values[0].prefix'}}{{jsonPath request.body '$.values.list_of_values[0].value'}}"
Lee Turner
06/13/2024, 1:01 PMjoin
helper but I would imagine it would make the whole thing more complex - https://github.com/jknack/handlebars.java/blob/master/handlebars/src/main/java/com/github/jknack/handlebars/helper/StringHelpers.java#L144Maxim Bastrygin
06/13/2024, 3:53 PM