You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: ValidationError should not be a GraphQLError object. It may be rewrapped in addErrorCatcherField() if client does not request error field in payload. We are using GraphQLError only for providing extensions property on top-level.
@@ -31,21 +26,26 @@ export function getValidationOTC(schemaComposer: SchemaComposer<any>): ObjectTyp
31
26
description: 'Field value which occurs the validation error',
32
27
type: 'JSON',
33
28
},
29
+
idx: {
30
+
description:
31
+
'Input record idx in array which occurs the validation error. This `idx` is useful for createMany operation. For singular operations it always be 0. For *Many operations `idx` represents record index in array received from user.',
0 commit comments