7.1. Get full - SphereMall/Android-MS-Client GitHub Wiki

Get Full

// Get list of products with full included data:
client.products()       
       .limit(2)
       .full();
       
// Get full product data by id:
client.products()
       .full(1);
       
// Get full product data by urlCode:
client.products()
       .full('url-code');