Interface TableUnknownIndexDescriptor

Represents an unknown index in the off chance that the Data API was not able to recognize a special index created through CQL.

interface TableUnknownIndexDescriptor {
    column: "UNKNOWN";
    definition: {
        apiSupport: {
            cqlDefinition: string;
            createIndex: boolean;
            filter: boolean;
        };
    };
    indexType: "UNKNOWN";
}

Properties

column: "UNKNOWN"
definition: {
    apiSupport: {
        cqlDefinition: string;
        createIndex: boolean;
        filter: boolean;
    };
}

Type declaration

  • apiSupport: {
        cqlDefinition: string;
        createIndex: boolean;
        filter: boolean;
    }
    • cqlDefinition: string
    • createIndex: boolean
    • filter: boolean
indexType: "UNKNOWN"