Package version: 5.3.0
The latest package version has this type for the apollo4 plugin create function:
export function createApollo4QueryValidationPlugin ( options: { schema?: GraphQLSchema } ) : ApolloServerPlugin;
The expected type for this function is as follows:
// from index.d.ts
interface PluginOptions {
formats: Record<string, (value: unknown) => boolean>;
}
export function createApollo4QueryValidationPlugin ( options: PluginOptions ) : ApolloServerPlugin;
I am willing to create a PR