API Reference
Create Graph
Create a graph from documents. This endpoint extracts entities and relationships from documents matching the specified filters or document IDs and creates a graph. Args: request: CreateGraphRequest containing:
- name: Name of the graph to create
- filters: Optional metadata filters to determine which documents to include - documents: Optional list of specific document IDs to include auth: Authentication context
Returns: Graph: The created graph object
POST
Headers
Body
application/json
Request model for creating a graph
Name of the graph to create
Optional metadata filters to determine which documents to include
Optional list of specific document IDs to include
Optional customizations for entity extraction and resolution prompts
Example:
{
"entity_extraction": {
"examples": [{ "label": "Example", "type": "ENTITY" }],
"prompt_template": "Extract entities from the following text: {content}\n{examples}"
}
}
Response
200
application/json
Successful Response
Represents a knowledge graph
Represents an entity in a knowledge graph
Represents a relationship between entities in a knowledge graph