I use the connector to connect to a web API to retrieve data. It brings back several hundred records back as follow.
{
"businesses": [
{
"id": "nrq5H3LZicjMG0wv7gy08g",
"alias": "kintaro-izakaya-toronto-3",
"name": "Kintaro Izakaya",
"image_url": "https://s3-media4.fl.yelpcdn.com/bphoto/4BIKH-N8HjsQUiL52OXN2w/o.jpg",
"is_closed": false,
"url": "https://www.yelp.com/biz/kintaro-izakaya-toronto-3?adjust_creative=RuqMLvQEYbPL06152nuLJw&utm_campaign=yelp_api_v3&utm_medium=api_v3_business_search&utm_source=RuqMLvQEYbPL06152nuLJw",
"review_count": 145,
"categories": [
{
"alias": "japanese",
"title": "Japanese"
},
{
"alias": "sushi",
"title": "Sushi Bars"
},
{
"alias": "tapasmallplates",
"title": "Tapas/Small Plates"
}
],
"rating": 4,
"coordinates": {
"latitude": 43.66417,
"longitude": -79.38006
},
"transactions": [
"restaurant_reservation"
],
"price": "$$",
"location": {
"address1": "459 Church Street",
"address2": "",
"address3": "",
"city": "Toronto",
"zip_code": "M4Y 4C5",
"country": "CA",
"state": "ON",
"display_address": [
"459 Church Street",
"Toronto, ON M4Y 4C5",
"Canada"
]
},
"phone": "+16475605335",
"display_phone": "+1 647-560-5335",
"distance": 1751.9094217306326
}
.............
],
"total": 311,
"region": {
"center": {
"longitude": -79.39682006835938,
"latitude": 43.67428196976998
}
}
}
Now I bring the result.business to Items of Gallery, but the gallery is only able to show 20 rows of record. Does anyone have any idea?