As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Hi Denys,
When using the Console to explore the collection linked to FlexData, the Console is making the following requests to show part of the data in the collection:
appdata/kid_123456/collection-name-here/_count?query={} appdata/kid_123456/collection-name-here?limit=25&skip=0&query={}&sort={"_id":-1}
These endpoints are onGetByQuery
and onGetCountByQuery
. The request will throw "NotImplemented"
error and that is why you would not see anything in the Console browser.
To be able to view the data in the Console explorer, please implement not only onGetAll
and onGetCount
, but also onGetByQuery
and onGetCountByQuery
.
I hope this has helped.
anyone? ...please?
denys
We have FlexService connected to FlexData route and
onGetAll() and onGetCount() handlers implemented
When we hook that up to DataCollection we are not able to view it in DataExplorer. When we click on Explore in web console - nothing happens and no flex service logs get created
Please help