iceberg-js
    Preparing search index...

    Interface LoadTableOptions

    interface LoadTableOptions {
        ifNoneMatch?: string;
        snapshots?: "all" | "refs";
    }
    Index

    Properties

    ifNoneMatch?: string

    ETag value from a previous response; server returns 304 (and we return null) if unchanged.

    snapshots?: "all" | "refs"

    Which snapshots the server should include in the returned metadata.

    • 'all': return every snapshot currently valid for the table
    • 'refs': only snapshots referenced by branches or tags Default if omitted is 'all' per spec.