@finos/perspective
    Preparing search index...

    Options which impact the behavior of [Client::table], as well as subsequent calls to [Table::update].

    type TableInitOptions = {
        format?: TableReadFormat;
        index?: string;
        limit?: number;
        name?: string;
    }
    Index

    Properties

    index?: string

    This [Table] should use the column named by the index parameter as the index, which causes [Table::update] and [Client::table] input to either insert or update existing rows based on index column value equality.

    limit?: number

    This [Table] should be limited to limit rows, after which the earliest rows will be overwritten (where earliest is defined as relative to insertion order).

    name?: string