This repository was archived by the owner on Sep 3, 2020. It is now read-only.

Description
It seems like that the imparative declaration of the schema as seen in the example custom connector is broken.
After returning a plain JSON schema in getFields() it was fixxed.
function getFields() {
return [
{
dataType: 'STRING',
label: 'Package',
name: 'packageName'
},
{
name: 'day',
dataType: 'STRING',
label: 'Date'
},
{
label: 'Downloads',
defaultAggregationType: 'SUM',
name: 'downloads',
dataType: 'NUMBER'
}
]
}