rework review comment

This commit is contained in:
Claus-Peter Huebner 2024-02-09 23:41:46 +01:00
parent f70ff4d74b
commit 62b38bfc75

View File

@ -22,9 +22,9 @@ export const schema = async (): Promise<GraphQLSchema> => {
validationError: { target: false },
skipMissingProperties: true,
skipNullProperties: true,
skipUndefinedProperties: true,
forbidUnknownValues: false,
stopAtFirstError: false,
skipUndefinedProperties: false,
forbidUnknownValues: true,
stopAtFirstError: true,
},
})
}