Hi all,
Is there a way to retrieve an entire liquid fetch result set?
{% capture resultExample %}
query.results.entities
{% endcapture %}
Or can I loop through and spit out all available key/values from a liquid fetch query?
{% for result in query.results.entities %}
{% for item in result %}
"{{item.key}}" : "{{item.value}}"
{% endfor %}
{% endfor %}
Thanks for any help!