Sanity Library Reference Docs
    Preparing search index...

    Interface QueryParseError

    Returned from the Content Lake API when a query is malformed, usually with a start and end column to indicate where the error occurred, but not always. Can we used to provide a more structured error message to the user.

    This will be located under the response error property.

    interface QueryParseError {
        description: string;
        end?: number;
        query?: string;
        start?: number;
        type: "queryParseError";
    }
    Index

    Properties

    description: string
    end?: number
    query?: string
    start?: number
    type: "queryParseError"