Loading posts in to a custom repeater?

does anyone know if there is any restrictions in loading posts into a repeater from the Posts data collection in WiX Blog using Velo? Configuring using a DataSet control is working without any issue. But I want to connect the same using Velo.

Appreciate any help on this.

Em… Just the loading speed issue I think. Dataset started fetch data when loading page, while code run after page is ready

What makes you need to use code?

You can read from database use a wix-data

import wixData from 'wix-data';

// Categories
wixData.query('Blog/Categories').find();

// Posts
wixData.query('Blog/Posts').find();

thanks guys. Issue resolved.