Neo4j · Schema

Neo4j Cypher Statement

A Cypher query statement with parameters for execution against a Neo4j database through the HTTP or Query API.

Graph DatabaseCypherCloudGraphQLDrivers

Properties

Name Type Description
statement string The Cypher query string to execute against the Neo4j database
parameters object Named parameters for the Cypher query. Always use parameters instead of string concatenation to protect against Cypher injection when incorporating user input.
resultDataContents array Requested result formats for the HTTP API. Possible values include row for tabular data and graph for graph visualization data.
includeStats boolean Whether to include query execution statistics such as nodes created, relationships created, and properties set in the response.
View JSON Schema on GitHub

JSON Schema

neo4j-cypher-statement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://neo4j.com/schemas/neo4j/cypher-statement.json",
  "title": "Neo4j Cypher Statement",
  "description": "A Cypher query statement with parameters for execution against a Neo4j database through the HTTP or Query API.",
  "type": "object",
  "required": ["statement"],
  "properties": {
    "statement": {
      "type": "string",
      "description": "The Cypher query string to execute against the Neo4j database",
      "minLength": 1,
      "examples": [
        "MATCH (n:Person {name: $name}) RETURN n",
        "CREATE (n:Person {name: $name, age: $age}) RETURN n"
      ]
    },
    "parameters": {
      "type": "object",
      "description": "Named parameters for the Cypher query. Always use parameters instead of string concatenation to protect against Cypher injection when incorporating user input.",
      "additionalProperties": true,
      "examples": [
        {
          "name": "Alice",
          "age": 30
        }
      ]
    },
    "resultDataContents": {
      "type": "array",
      "description": "Requested result formats for the HTTP API. Possible values include row for tabular data and graph for graph visualization data.",
      "items": {
        "type": "string",
        "enum": ["row", "graph"]
      },
      "uniqueItems": true
    },
    "includeStats": {
      "type": "boolean",
      "description": "Whether to include query execution statistics such as nodes created, relationships created, and properties set in the response.",
      "default": false
    }
  },
  "additionalProperties": false
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/neo4j-cypher-statement"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.