0

mikro-orm と Express を使用して、バックエンド コントローラーで次の簡単なセットアップを行っています。

const getOrigins = async (_: Request, res: Response) => {
  try {
    const origins = await orm.em.find(Origin, {}, { populate: ['country'] });
    res.status(200).send(origins);
  } catch (error) {
    console.error(error);
    res.status(500).send(error);
  }
};

これらは、私が使用しているエンティティの簡易版です。

export abstract class Base<T extends { id: string }> extends BaseEntity<T, 'id'> {
  @PrimaryKey({ type: 'uuid' })
  public id: string = v4();

  @Property()
  public createdAt: Date = new Date();

  @Property({ onUpdate: () => new Date() })
  public updatedAt: Date = new Date();

  constructor(body = {}) {
    super();
    this.assign(body);
  }
}

@Entity()
export class Country extends Base<Country> {
  @Property()
  @Unique()
  country: string;

  @OneToMany(() => Origin, o => o.country)
  origins = new Collection<Origin>(this);

  constructor(country: string) {
    super();
    this.country = country;
  }
}

@Entity()
export class Origin extends Base<Origin> {
  @ManyToOne(() => Country, { cascade: [Cascade.PERSIST] })
  country;

  constructor(country: Country) {
    super();
    this.country = country;
  }
}

コードは、国が入力されたオリジンのリストを返す必要があります。これまでのところ、コードは正常に機能していますが、次のオブジェクトが返されます。

[
  {
    "id": "0cda300f-57a3-406f-8167-271ee1db519f",
    "createdAt": "2021-03-06T22:19:54.000Z",
    "updatedAt": "2021-03-06T22:19:54.000Z",
    "country": {
      "id": "801a73af-4fc7-46d7-b5c4-0f8fcd2024d5",
      "createdAt": "2021-03-06T22:10:58.000Z",
      "updatedAt": "2021-03-06T22:10:58.000Z",
      "country": "UK"
    }
  }
]

次のようなより単純なオブジェクトを返すように、クエリ パラメーターを使用して、ネストされたエンティティの返されたプロパティをフィルター処理する方法はありますか。

[
  {
    "id": "0cda300f-57a3-406f-8167-271ee1db519f",
    "createdAt": "2021-03-06T22:19:54.000Z",
    "updatedAt": "2021-03-06T22:19:54.000Z",
    "country": "UK"
  }
]

複数の構文バリエーションを試しましたが、適切なものが見つからないようです。mikro-orm のドキュメントは、この特定のケースについてあまり明確ではありません。よろしくお願いいたします。

4

1 に答える 1