hi po2n ,
If you want to get data with flexible capability you can use internal function in Visual Programming _fetchRecord
tokenUser="ebsdfssdfsdf";
formdataID="jnbmdf";
limit=100;
page=1;
filter={name:"doni"};
filterOperator="and";
sort={created_at:-1};
_fetchRecord(tokenUser,formdataID,page,limit,filter,filterOperator,sort);
tokenUser you can get from _user.token
formDataID is the datamanager that you want to fetch the data
limit is the maximum record you want to fetch
page if you want to use pagination
filter if you want to filter the data
filterOperator if you are using more than one filter
sort if you want to sort the data
So if you want to get 10 latest record you can sort it by created_at or updated_at and you can limit it to only 10, hope that explains it