Graphcool seems to allow unknown decorators throug...
# prisma-whats-new
m
Graphcool seems to allow unknown decorators through in the types.graphql file. which it never used to allow. please can you keep this behaviour? I’m looking to reuse the types.graphql files for something outside of graphcool I.e.
Copy code
type User @model {
  id: ID! @isUnique
  name: String @myCustomDecorator(name: "VALUE")
  dateOfBirth: DateTime
  age: Int @myCustomDecorator(name: "VALUE")
}