Amazon Neptune · Schema

ExecuteOpenCypherQueryInput

ExecuteOpenCypherQueryInput schema from Neptune

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
query string The openCypher query string to execute.
parameters string The openCypher query parameters as a JSON-serialized string.
View JSON Schema on GitHub

JSON Schema

data-execute-open-cypher-query-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/data-execute-open-cypher-query-input-schema.json",
  "title": "ExecuteOpenCypherQueryInput",
  "description": "ExecuteOpenCypherQueryInput schema from Neptune",
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The openCypher query string to execute."
    },
    "parameters": {
      "type": "string",
      "description": "The openCypher query parameters as a JSON-serialized string."
    }
  },
  "required": [
    "query"
  ]
}