remove graphql-validation from federation

This commit is contained in:
Claus-Peter Huebner 2023-10-24 17:21:01 +02:00
parent a05032aade
commit 8f6152218b

View File

@ -11,6 +11,7 @@ const schema = async (): Promise<GraphQLSchema> => {
resolvers: [getApiResolvers()],
// authChecker: isAuthorized,
scalarsMap: [{ type: Decimal, scalar: DecimalScalar }],
/*
validate: {
validationError: { target: false },
skipMissingProperties: true,
@ -19,6 +20,7 @@ const schema = async (): Promise<GraphQLSchema> => {
forbidUnknownValues: true,
stopAtFirstError: true,
},
*/
})
}