LangGraph.js API Reference
    Preparing search index...

    Represents a stored item with metadata.

    interface SearchItem {
        createdAt: Date;
        key: string;
        namespace: string[];
        score?: number;
        updatedAt: Date;
        value: Record<string, any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    createdAt: Date

    Timestamp of item creation.

    key: string

    Unique identifier within the namespace.

    namespace: string[]

    Hierarchical path defining the collection in which this document resides. Represented as an array of strings, allowing for nested categorization. For example: ["documents", "user123"]

    score?: number

    Relevance/similarity score for the search result.

    updatedAt: Date

    Timestamp of last update.

    value: Record<string, any>

    The stored data as an object. Keys are filterable.