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, }, }) }