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.
type User @model {
id: ID! @isUnique
name: String @myCustomDecorator(name: "VALUE")
dateOfBirth: DateTime
age: Int @myCustomDecorator(name: "VALUE")
}