LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
LangGraph
  • Web
  • Channels
  • Pregel
  • Prebuilt
  • Remote
  • Stream
LangGraph SDK
  • Ui
  • Client
  • Auth
  • React
  • Logging
  • React Ui
  • Utils
  • Server
  • Stream
LangGraph Checkpoint
LangGraph Checkpoint MongoDB
LangGraph Checkpoint Postgres
  • Store
LangGraph Checkpoint Redis
  • Shallow
  • Store
LangGraph Checkpoint SQLite
LangGraph Checkpoint Validation
  • Cli
LangGraph API
LangGraph CLI
LangGraph CUA
  • Utils
LangGraph Supervisor
LangGraph Swarm
⌘I

LangChain Assistant

Ask a question to get started

Enter to send•Shift+Enter new line

Menu

LangGraph
WebChannelsPregelPrebuiltRemoteStream
LangGraph SDK
UiClientAuthReactLoggingReact UiUtilsServerStream
LangGraph Checkpoint
LangGraph Checkpoint MongoDB
LangGraph Checkpoint Postgres
Store
LangGraph Checkpoint Redis
ShallowStore
LangGraph Checkpoint SQLite
LangGraph Checkpoint Validation
Cli
LangGraph API
LangGraph CLI
LangGraph CUA
Utils
LangGraph Supervisor
LangGraph Swarm
Language
Theme
JavaScript@langchain/langgraph-checkpointMemorySavergetDeltaChannelHistory
Method●Since v0.0

getDeltaChannelHistory

Copy
getDeltaChannelHistory(options: __type): Promise<Record<string, DeltaChannelHistory>>
View source on GitHub

Parameters

NameTypeDescription
options*__type

Override: walk the parent chain ONCE for all requested channels using direct storage access.

Each channel terminates independently at the nearest ancestor whose stored channel_values[ch] is populated. Other channels keep walking until they find their own terminator or hit the root.

The seed value (whether a DeltaSnapshot or a plain pre-delta migration blob) is the value AT that ancestor, prior to its own pending writes that produce the child. Those on-path writes — including the ones stored on the terminating ancestor — are always collected and replayed on top of the seed, so a thread migrated from a pre-delta channel does not drop the writes saved under the migration boundary checkpoint.

Beta. See BaseCheckpointSaver.getDeltaChannelHistory.