The following code logs that response.entities is null, even though later (e.g. when clicking 'expand' triangle' in chrome's console log) the data is there - see the screenshot. I haven't found anything in documentation on that behavior. Is it a bug, or should something more be awaited?
static async getData() {
const response = await this.api().get(uri);
console.log('after': response);
}
