Basic Data

To get the basic product data 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() %}

Variants

Getting possible other variants of a product.

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() %}