PRISMA:datamodel.prisma如何将自己的Ints用作ID

时间:2019-10-13 19:29:58

标签: graphql prisma-graphql

而不是使用id:ID!我想使用自己独特的,非系统生成的“密钥” account_ID,并能够通过突变为account_ID输入自己的条目。

这是我的数据模型:

type Account {
  account_id:Int! @id(strategy: NONE)
  account_name:String
  account_ident:String
  account_status:Int
}  

但是我在操场上不能输入自己的account_ID

0 个答案:

没有答案