where: { id: { in: [ null ] } }
@ -1892,7 +1892,11 @@ export class PortfolioService {
});
} else {
const accountIds = uniq(
orders.map(({ accountId }) => {
orders
.filter(({ accountId }) => {
return accountId;
})
.map(({ accountId }) => {
);