Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.deepmerge.ai/llms.txt

Use this file to discover all available pages before exploring further.

Action name: get_entry · Read only (never changes anything)
Returns one entry by id, plus its graph neighborhood (outgoing and incoming relations) when include_relations is true.

Inputs

FieldTypeRequiredWhat it is
idstringYesEntry UUID.
include_relationsbooleanNoWhen true, returns outgoing + incoming relations. Default false.
CALL THIS BEFORE editing or archiving an entry. The graph tells you
which other entries depend on this one (supports, derived_from,
supersedes) so you can avoid stranding work that cites it.

USE WHEN: rebuilding context around a specific entry; checking what an
entry cites before relying on it; finding the dependency surface before
a destructive op.
DO NOT USE: to discover what entries exist (use get_entries); to fetch
several entries at once (call get_entries with filters).

Returns { entry, relations: { outgoing: [...], incoming: [...] } }.