in my data model, as the type of id, I want to generate a default value that will start with the user.
so the id will bed something like this user..rear33422qeqr
type User {
myId: String! @default (`user${2+2}`)
name: String!
email: String! @unique
}
is it possible to call a javascript function or using string interpolation (user${2+2}
)