There’s no way to use `extend type XX` to remove a...
# orm-help
s
There’s no way to use
extend type XX
to remove a field from the original type is there? Just thinking if there were, that would be the perfect way to “hide” certain fields from the prisma generated schema, without having to worry about copy/paste/repeat each time the prisma schema changed for that type.
a
We used to have https://github.com/prismagraphql/graphql-transform-schema for that, but then the preferred method changed to explicitly defining your public schema.
s
Ah ok