使 Mikro-ORM 关系字段可选

Posted

技术标签:

【中文标题】使 Mikro-ORM 关系字段可选【英文标题】:Make Mikro-ORM relational fields optional 【发布时间】:2021-08-27 17:24:40 【问题描述】:

我正在使用 mikro-orm 生成 graphql 模式,并且我的一对一关系中的所有字段都需要返回。如何让它们成为可选的,以便当字段返回 null 时我的查询不会引发错误?这是我在ticket.entity.ts 中定义关系的方式

@Field(() => Order,  nullable: true )
  @OneToOne(() => Order, null,  nullable: true )
  public order?: Order;

在我生成的tickets.schema.graphql 中,Order 对象返回:

type Order 
  id: ID!
  createdAt: DateTime!
  updatedAt: DateTime!
  archivedAt: DateTime
  client: String!
  soldDate: DateTime!
  type: String!
  ...
  ...
  ...

在我的 Order 实体中,所有字段都是可选的,生成的 SQL 表也可以这样理解它们。

export class Order extends BaseEntity 
  @Field(() => String)
  @Property( nullable: true )
  public client: string;

  @Field(() => Date)
  @Property( columnType: "date", nullable: true )
  public soldDate: Date;

  @Field(() => String)
  @Property( nullable: true )
  public type: string;

  ...
  ...
  ...

我的订单实体中的工单没有一对一的关系。门票有订单,但订单不一定有门票。我没有在文档中看到单向关系,所以我想我会把它放在这里以防万一它与我的问题有关。

【问题讨论】:

【参考方案1】:

我的字段需要在订单实体中为空。这是与@nestjs/graphql 相关的问题,而不是与 mikro-orm 相关的问题。

export class Order extends BaseEntity 
  @Field(() => String,  nullable: true )
  @Property( nullable: true )
  public client: string;

  @Field(() => Date,  nullable: true )
  @Property( columnType: "date", nullable: true )
  public soldDate: Date;

  @Field(() => String,  nullable: true )
  @Property( nullable: true )
  public type: string;

【讨论】:

以上是关于使 Mikro-ORM 关系字段可选的主要内容,如果未能解决你的问题,请参考以下文章

处理关系数据库中记录的可选字段

对如何使 Django 模型字段可选的感到困惑

Vuelidate:根据其他复选框使字段可选(也应适用于自定义验证)

在 Kotlinx 序列化中使字段可选

Drupal Views 将图像字段输出为可选链接

从Woocommerce 3.4+中的结帐字段中删除“(可选)”文本