Open simonmeyerrr opened 1 year ago
This type defines that request can be a string or false:
false
export type BaseResolverConfig = { [...] request?: string | false; response?: string | false; [...] };
But validation of the config only accepts strings:
resolverConfig: { type: 'object', properties: { [...] request: { type: 'string' }, response: { type: 'string' }, [...] }, }
This type defines that request can be a string or
false
:But validation of the config only accepts strings: