diff --git a/federation/src/graphql/schema.ts b/federation/src/graphql/schema.ts index d1be63b00..9d39f1398 100644 --- a/federation/src/graphql/schema.ts +++ b/federation/src/graphql/schema.ts @@ -11,6 +11,7 @@ const schema = async (): Promise => { resolvers: [getApiResolvers()], // authChecker: isAuthorized, scalarsMap: [{ type: Decimal, scalar: DecimalScalar }], + /* validate: { validationError: { target: false }, skipMissingProperties: true, @@ -19,6 +20,7 @@ const schema = async (): Promise => { forbidUnknownValues: true, stopAtFirstError: true, }, + */ }) }