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-checkpointDeltaSnapshot
Classā—Since v0.0

DeltaSnapshot

Copy
class DeltaSnapshot

Constructors

Properties

View source on GitHub
constructor
constructor→ DeltaSnapshot<Value>
property
lg_name: "DeltaSnapshot"

Marker used for structural detection across module/realm boundaries.

property
value: Value

Snapshot blob for a DeltaChannel with finite snapshot frequency.

Stored directly in a checkpoint's channel_values in place of the full accumulated value. The ancestor walk in BaseCheckpointSaver.getDeltaChannelHistory terminates when it encounters a populated channel_values entry for a channel; a DeltaSnapshot value is the materialized state at that ancestor, so the channel reconstructs directly from .value without replaying earlier writes.

Beta. The on-disk representation may change in future releases.