Closed pcornier closed 7 years ago
Hi, do you plan to support renaming in field definitions? I'd like to do something like:
dl.groupby(['YEAR', {name: 'CTRY_CDE', as: 'COUNTRY_CODE'}, 'ORG']).count().execute(data);
Thank you!
Sorry for the delayed response. Yes, you can use entries like this:
dl.groupby(['YEAR', {get: dl.$('CTRY_CDE'), name: 'COUNTRY_CODE'}, 'ORG']).count().execute(data);
Hi, do you plan to support renaming in field definitions? I'd like to do something like:
Thank you!