engine
engine copied to clipboard
Possible entity naming collisions with generated GraphQL schema
Generated GraphQL schema automatically generates named types by appending Meta
to entities.
So when you define Product
entity and ProductMeta
entity migrations are OK, but GraphQL server stops working because type name ProductMeta
is now colliding.
Error: Schema must contain uniquely named types but contains multiple types named "ProductMeta".
at new GraphQLSchema8
...