S
Sanjeev Reddy
Guest
Hi Apli, Currently PDS OE tooling doesn’t have support for “count” operation in catalog generation, so it is generating as "type": "invoke" for “count” function. So, please update the catalog file manually for count operation as below: Default values in catalog for count: { "name": "count", "path": "\/count?filter={filter}", "useBeforeImage": false, "type": "invoke", "verb": "put", "params": [ { "name": "filter", "type": "QUERY" }, { "name": "numRecs", "type": "RESPONSE_BODY" } ] } Updated values in catalog for count: { "name": "count", "path": "\/count?filter={filter}", "useBeforeImage": false, "type": "count", "verb": "put", "params": [ { "name": "filter", "type": "QUERY" }, { "name": "numRecs", "type": "RESPONSE_BODY" } ] } May be you need to delete the existing data provider and recreate the data provider after changing catalog values. Let us know what you find. Hope this helps, Sanjeev.
Continue reading...
Continue reading...