Authorizations
Authorization: Bearer $JWT_TOKEN
Headers
Prefer header, used to specify a custom timeout in seconds using the wait parameter as per RFC7240.
Required range:
x >= 0Response
OK
curl --request POST \
--url {protocol}://{ApiServer}/api/v2/graphs/cypher \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"query": "<string>",
"include_properties": true
}'{
"data": {
"node_keys": [
"<string>"
],
"edge_keys": [
"<string>"
],
"nodes": {},
"edges": [
{
"source": "<string>",
"target": "<string>",
"label": "<string>",
"kind": "<string>",
"lastSeen": "2023-11-07T05:31:56Z",
"properties": {}
}
]
}
}Runs a manual cypher query directly against the database
{
"data": {
"node_keys": [
"<string>"
],
"edge_keys": [
"<string>"
],
"nodes": {},
"edges": [
{
"source": "<string>",
"target": "<string>",
"label": "<string>",
"kind": "<string>",
"lastSeen": "2023-11-07T05:31:56Z",
"properties": {}
}
]
}
}Authorization: Bearer $JWT_TOKEN
Prefer header, used to specify a custom timeout in seconds using the wait parameter as per RFC7240.
x >= 0OK
Show child attributes