Not report proper error when fromDatasetId is wrong
- Dominant language
- TypeScript
- Stars
- 67.3k
- Forks
- 19.8k
- Avg merge
- 11d 14h
- Merged PRs (30d)
- 8
Description
### Version
5.1.2
### Steps to reproduce
If I specified wrong fromDatasetId like this:
```ts
dataset: [
{
id: 'RawData',
source: rawData
},
{
id: 'CountryABData',
fromDatasetId: 'IdRawData',
transform: {
type: 'filter',
config: {
or: [{
dimension: 'Country', '=': COUNTRY_A
}, {
dimension: 'Country', '=': COUNTRY_B
}]
}
}
}
],
```
### What is expected?
Should report error message like `can't find dataset which id is 'IdRawData'`
### What is actually happening?
It reports `invalid sourceFormat: unkown`

Contributor guide
Assessment
This issue has not been assessed yet.