@gradientedge/commercetools-utils
    Preparing search index...

    Interface GraphQLInvalidJsonInputError

    Returned when an invalid JSON input has been sent. Either the JSON is syntactically incorrect or does not conform to the expected shape (for example is missing a required field).

    The client application should validate the input according to the constraints described in the error message before sending the request.
    
    interface GraphQLInvalidJsonInputError {
        code: "InvalidJsonInput";
        detailedErrorMessage: string;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    code: "InvalidJsonInput"

    One of the error codes that is listed on the Errors page.

    detailedErrorMessage: string

    Further explanation about why the JSON is invalid.