What is `@hidden` for here? ``` type User { id:...
# orm-help
g
What is
@hidden
for here?
Copy code
type User {
  id: ID! @unique
  email: String! @hidden @unique
  password: String! @hidden
  nickname: String! @unique
  name: String
  createdAt: DateTime!
  updatedAt: DateTime!
}
n
Where did you see this?
g
Idk, somewhere in graphql docs, ig
n
@hidden
doesn't have a specific meaning. It is not a recognized directive in the Prisma datamodel.
g
okay