Sanity Library Reference Docs
    Preparing search index...

    Type Alias MissingKeysError

    This error may happen for arrays of objects where one or more of the members are missing a _key

    type MissingKeysError = {
        schemaType: ArraySchemaType;
        type: "MISSING_KEYS";
        value: { _key?: string }[];
    }
    Index

    Properties

    Properties

    schemaType: ArraySchemaType
    type: "MISSING_KEYS"
    value: { _key?: string }[]