【问题标题】:Prisma update function fails because of incorrect type由于类型不正确,Prisma 更新功能失败
【发布时间】:2021-01-14 23:39:45
【问题描述】:

我正在使用 Prisma2。变异函数如下所示:

const updateUserProfileDetails = async (
  inputValues, ctx: { session?: SessionContext } = {}
) => {
  const profile = await db.user.update({
    where: { id: ctx.session!.userId },
    data: {
      profile: {
        update: {
          aboutMe: "this is a random message for about me.",  // type error is displayed here
          location: "London, UK", // same type error here
          profession: "rubber duck", // same type error here
        },
      },
    },
  });
  return profile;
};

但是,在aboutMelocationprofession 道具上,打字稿在尖叫:

Type 'string' is not assignable to type 'NullableStringFieldUpdateOperationsInput | undefined'.ts(2322)

相关的 Schema 如下所示:

model User {
  id             Int       @default(autoincrement()) @id
  createdAt      DateTime  @default(now())
  updatedAt      DateTime  @updatedAt
  firstName      String?
  lastName       String?
  email          String    @unique
  hashedPassword String?
  role           String    @default("user")
  sessions       Session[]
  profile        Profile?
}

model Profile {
  id                 Int       @default(autoincrement()) @id
  aboutMe            String?
  location           String?
  profession         String?
  user               User      @relation(fields:[userId], references: [id])
  userId             Int
}

版本:

@prisma/cli: 2.6.0 => 2.6.0 
@prisma/client: 2.6.0 => 2.6.0 

我一直无法找到(通过文件夹搜索)NullableStringFieldUpdateOperationsInput 的定义。我做错了什么?

【问题讨论】:

    标签: javascript database prisma mutation prisma2


    【解决方案1】:

    您能否将@prisma/cli@prisma/client 更新为2.7.1?它在最新版本中运行良好。我试过了,TS在这里没有抱怨,查询也很好。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2022-08-22
      • 2011-04-19
      • 2018-01-31
      • 2021-05-07
      • 1970-01-01
      • 1970-01-01
      • 2016-11-30
      • 1970-01-01
      相关资源
      最近更新 更多