有人能指出我正确的方向吗?我想使用@default
指令创建一个计算值,像这样……
type Event {
id: ID! @unique
title: String!
slug: String! @unique @default(value: titleToSlug())
}
答案 0 :(得分:1)
当前不支持动态默认值,可以在应用程序服务器层中进行处理。您可以为动态默认值here创建功能请求。
该伪指令被称为@default
,而不是in the documentation所述的@defaultValue
。