LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • LangGraph Checkpoint
    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
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    Pythonlanggraph-sdkauthtypesStoreListNamespaces
    Class●Since v0.1

    StoreListNamespaces

    Copy
    StoreListNamespaces()

    Bases

    typing.TypedDict

    Constructors

    Attributes

    View source on GitHub
    constructor
    __init__
    NameType
    namespacetuple[str, ...] | None
    suffixtuple[str, ...] | None
    max_depthint | None
    limitint
    offsetint
    attribute
    namespace: tuple[str, ...] | None

    Prefix filter for namespaces. Can be None if no prefix was provided.

    Auth handlers can modify this to enforce per-user scoping. When None, handlers should set it to (user_id,) to scope listing to the user's namespaces.

    attribute
    suffix: tuple[str, ...] | None

    Optional conditions for filtering namespaces.

    attribute
    max_depth: int | None

    Maximum depth of namespace hierarchy to return.

    attribute
    limit: int

    Maximum number of namespaces to return.

    attribute
    offset: int

    Number of namespaces to skip for pagination.

    Operation to list and filter namespaces in the store.

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