Type alias MutationErrorPartsFragment

MutationErrorPartsFragment: {
    __typename: "MutationError";
    code: string;
    fields: {
        __typename?: "MutationFieldError";
        field: string;
        message: string;
        type: MutationFieldErrorType;
    }[];
    message: string;
    type: MutationErrorType;
}

Type declaration

  • __typename: "MutationError"
  • code: string
  • fields: {
        __typename?: "MutationFieldError";
        field: string;
        message: string;
        type: MutationFieldErrorType;
    }[]
  • message: string
  • type: MutationErrorType

Generated using TypeDoc