Documentation Index
Fetch the complete documentation index at: https://databridge-datetime-fix.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
- Sync
- Async
Parameters
name(str): Name of the graph to retrieve
Returns
Graph: The requested graph object. If the graph is still building it will havesystem_metadata["status"] == "processing". Use the convenience helpersgraph.is_processing,graph.is_completed,graph.error, or the client-levelwait_for_graph_completion()to monitor progress.
Examples
- Sync
- Async
Graph Properties
The returnedGraph object has the following properties:
id(str): Unique graph identifiername(str): Graph nameentities(List[Entity]): List of entities in the graphrelationships(List[Relationship]): List of relationships in the graphmetadata(Dict[str, Any]): Graph metadatadocument_ids(List[str]): Source document IDsfilters(Dict[str, Any], optional): Document filters used to create the graphcreated_at(datetime): Creation timestampupdated_at(datetime): Last update timestampowner(Dict[str, str]): Graph owner information
Entity Properties
EachEntity object has the following properties:
id(str): Unique entity identifierlabel(str): Display label for the entitytype(str): Entity typeproperties(Dict[str, Any]): Entity propertiesdocument_ids(List[str]): Source document IDschunk_sources(Dict[str, List[int]]): Source chunk numbers by document ID
Relationship Properties
EachRelationship object has the following properties:
id(str): Unique relationship identifiersource_id(str): Source entity IDtarget_id(str): Target entity IDtype(str): Relationship typedocument_ids(List[str]): Source document IDschunk_sources(Dict[str, List[int]]): Source chunk numbers by document ID

