curl --request POST \
--url https://api.unize.org/v1/storage/export/ \
--header 'Content-Type: application/json' \
--data '{
"api_key": "<string>",
"execution_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"cypher_query": false
}'
{
"graph": {
"nodes": [
{
"node_label": "<string>",
"node_name": "<string>",
"node_var": "<string>",
"node_properties": "<any>",
"snippet": "<string>"
}
],
"relationships": [
{
"rel_type": "<string>",
"start_node": "<string>",
"end_node": "<string>",
"rel_properties": "<any>"
}
],
"cypher": "<string>"
},
"latest_graph_merge_data": {
"extraction_criteria": "<string>",
"status": "queued",
"timestamp": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"system": "st-0.75",
"extraction_mode": "normal"
}
}
Export a knowledge graph in Cypher or JSON.
curl --request POST \
--url https://api.unize.org/v1/storage/export/ \
--header 'Content-Type: application/json' \
--data '{
"api_key": "<string>",
"execution_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"cypher_query": false
}'
{
"graph": {
"nodes": [
{
"node_label": "<string>",
"node_name": "<string>",
"node_var": "<string>",
"node_properties": "<any>",
"snippet": "<string>"
}
],
"relationships": [
{
"rel_type": "<string>",
"start_node": "<string>",
"end_node": "<string>",
"rel_properties": "<any>"
}
],
"cypher": "<string>"
},
"latest_graph_merge_data": {
"extraction_criteria": "<string>",
"status": "queued",
"timestamp": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"system": "st-0.75",
"extraction_mode": "normal"
}
}
The response is of type object
.