This message was deleted.
# general
s
This message was deleted.
t
Hi @Patrick Jansson probably your best bet is to loop over the result of the
jsonPath
call using the
each
helper e.g.
Copy code
{{#each (jsonPath request.body '$.value') as |num|}}
  {{{num}}}
{{/each}}
p
Wow thanks for the quick response! I will test this
👍 1