mirror of
https://github.com/lancedb/lancedb.git
synced 2026-06-02 11:50:41 +00:00
692 B
692 B
@lancedb/lancedb • Docs
@lancedb/lancedb / FieldMetadataUpdate
Interface: FieldMetadataUpdate
A per-field metadata update, addressed by dot-path.
Properties
metadata
metadata: Record<string, null | string>;
Metadata key/value pairs. Merged into the field's existing metadata by
default; a value of null deletes that key.
path
path: string;
Dot-separated path to the field. For a top-level column this is just its name; for a nested field it's the path, e.g. "a.b.c".
replace?
optional replace: boolean;
If true, replace the field's entire metadata map instead of merging.