From 62b38bfc75c8b7e1ba5afc56ee30dcdaf9198268 Mon Sep 17 00:00:00 2001 From: Claus-Peter Huebner Date: Fri, 9 Feb 2024 23:41:46 +0100 Subject: [PATCH] rework review comment --- backend/src/graphql/schema.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/graphql/schema.ts b/backend/src/graphql/schema.ts index 856844c94..bcb8081a6 100644 --- a/backend/src/graphql/schema.ts +++ b/backend/src/graphql/schema.ts @@ -22,9 +22,9 @@ export const schema = async (): Promise => { validationError: { target: false }, skipMissingProperties: true, skipNullProperties: true, - skipUndefinedProperties: true, - forbidUnknownValues: false, - stopAtFirstError: false, + skipUndefinedProperties: false, + forbidUnknownValues: true, + stopAtFirstError: true, }, }) }