How would you scan schema for missing resolver for queries and non-scalar fields ?
I'm trying to work with a dynamic schema so I need to be able to test this programmatically. I've been browsing graphql tools for few hours to find a way to do this, but I'm getting nowhere...
- checkForResolveTypeResolver - this only apply to interface and union resolveType resolver
- I can't find a way to know when a defaultFieldResolver is applied
- I tried working with custom directives to add @requiredResolver, to help identify those fields, but custom resolver are far from being fully supported:
- introspection & directives
- no graphql-js directives handler (can workaround this with graphql-tools tho)
any help is appreciated !