v1

latestOpenAPI 3.1.0Apache-2.02026-07-17111518.0 KB

Execute a Cypher query

Execute an OpenCypher query against the graph database. Supports both read (MATCH) and write (CREATE, SET, DELETE, MERGE) queries.

post/api/query

Request body

querystring required

An OpenCypher query string

graphstring

Target graph/tenant name (default: 'default')

Example request

{
  "query": "MATCH (n:Person) RETURN n"
}

Response

Query executed successfully

columnsstring[]

Column names for the tabular result

All 11 operations