Can anyone point me in the right direction? I’d li...
# orm-help
g
Can anyone point me in the right direction? I’d like to create a calculated value with the
@defaultValue
directive like this…
Copy code
type Event {
  id: ID! @unique

  title: String!
  slug: String! @unique @defaultValue(value: titleToSlug())
}
To make the answer more searchable, I posted to stack overflow as well to help others… https://stackoverflow.com/questions/51234702/how-to-create-computed-values-in-defaultvalue-directives
1