标签: graphql prisma-graphql
而不是使用id:ID!我想使用自己独特的,非系统生成的“密钥” account_ID,并能够通过突变为account_ID输入自己的条目。
account_ID
这是我的数据模型:
type Account { account_id:Int! @id(strategy: NONE) account_name:String account_ident:String account_status:Int }
但是我在操场上不能输入自己的account_ID。