Full List

To get all products from your Hublify PIM.

Template

Getting the data and rendering it

{# Creating a standalone query-object #}
{% set myQueryObj = hublify.dataset('blog') %}

HTML Result

The rendered result looks for example like this

{% set entries = hublify.dataset('blog')
    .limit(10)
    .all() %}

Filtered List

Apply one or more filters to your product-query

Template

Getting the data and rendering it

{# Creating a standalone query-object #}
{% set myQueryObj = hublify.dataset('blog') %}

HTML Result

The rendered result looks for example like this

{% set entries = hublify.dataset('blog')
    .limit(10)
    .all() %}