For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PlaygroundDiscordStatusDashboardSign Up >
DocumentationSDK ReferenceGraphiti
DocumentationSDK ReferenceGraphiti
  • SDK Reference
      • PUTSet graph ontology
      • GETList graph ontology
      • POSTAdd Data
      • POSTAdd Data in batch mode
      • POSTAdd Fact Triple
      • POSTClone graph
      • POSTCreate Graph
      • GETList all graphs.
      • POSTDetect Patterns (Experimental)
      • POSTSearch Graph
      • GETGet Graph
      • DELDelete Graph
      • PATCHUpdate Graph.
      • GETWarm Graph Cache
        • POSTGet Graph Nodes
        • POSTGet User Nodes
        • GETGet Entity Edges for a node
        • GETGet Episodes for a node
        • GETGet Node
        • PATCHUpdate Node
        • DELDelete Node
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceGraphNode

Update Node

PATCH
https://api.getzep.com/api/v2/graph/node/:uuid
PATCH
/api/v2/graph/node/:uuid
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.graph.node.update(
7 uuid_="uuid",
8)
1{
2 "created_at": "string",
3 "name": "string",
4 "summary": "string",
5 "uuid": "string",
6 "attributes": {},
7 "labels": [
8 "string"
9 ],
10 "relevance": 1.1,
11 "score": 1.1,
12 "selection_rank": 1
13}
Updates an entity node by UUID.
Was this page helpful?
Previous

Delete Node

Next
Built with

Path parameters

uuidstringRequired
Node UUID

Request

Update node request
attributesmap from strings to anyOptional
Updated attributes. Merged with existing attributes. Set a key to null to delete it.
labelslist of stringsOptional
Updated labels for the node
namestringOptional1-50 characters
Updated name for the node
summarystringOptional<=500 characters
Updated summary for the node

Response

Updated node
created_atstring
Creation time of the node
namestring
Name of the node
summarystring
Regional summary of surrounding edges
uuidstring
UUID of the node
attributesmap from strings to any
Additional attributes of the node. Dependent on node labels
labelslist of strings
Labels associated with the node
relevancedouble

Relevance is an experimental rank-aligned score in [0,1] derived from Score via logit transformation. Only populated when using cross_encoder reranker; omitted for other reranker types (e.g., RRF).

scoredouble

Score is the reranker output: sigmoid-distributed logits [0,1] when using cross_encoder reranker, or RRF ordinal rank when using rrf reranker

selection_rankinteger

SelectionRank is the global cross-scope rank assigned by auto scope selection.

Errors

400
Bad Request Error
404
Not Found Error
500
Internal Server Error