Amazon Neptune · Schema

ExecuteOpenCypherQueryInput

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

amazon-neptune-executeopencypherqueryinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecuteOpenCypherQueryInput",
  "title": "ExecuteOpenCypherQueryInput",
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "The openCypher query string to execute."
    },
    "parameters": {
      "type": "string",
      "description": "The openCypher query parameters as a JSON-serialized string."
    }
  }
}