LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    Pythonlanggraph-sdkauthtypesStoreSearch
    Class●Since v0.1

    StoreSearch

    Copy
    StoreSearch()

    Bases

    typing.TypedDict

    Constructors

    Attributes

    View source on GitHub
    constructor
    __init__
    NameType
    namespacetuple[str, ...]
    filterdict[str, typing.Any] | None
    limitint
    offsetint
    querystr | None
    attribute
    namespace: tuple[str, ...]

    Prefix filter for defining the search scope.

    Auth handlers can modify this to enforce per-user scoping.

    attribute
    filter: dict[str, typing.Any] | None

    Key-value pairs for filtering results based on exact matches or comparison operators.

    attribute
    limit: int

    Maximum number of items to return in the search results.

    attribute
    offset: int

    Number of matching items to skip for pagination.

    attribute
    query: str | None

    Natural language search query for semantic search capabilities.

    Operation to search for items within a specified namespace hierarchy.

    This dict is mutable — auth handlers can modify namespace to enforce access scoping (e.g., prepending the user's identity).