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.storebaseListNamespacesOpmatch_conditions
    Attribute●Since v1.0

    match_conditions

    Optional conditions for filtering namespaces.

    Examples

    All user namespaces:

    (MatchCondition(match_type="prefix", path=("users",)),)

    All namespaces that start with "docs" and end with "draft":

    (
        MatchCondition(match_type="prefix", path=("docs",)),
        MatchCondition(match_type="suffix", path=("draft",))
    ) 
    Copy
    match_conditions: tuple[MatchCondition, ...] | None = None
    View source on GitHub