Amazon Neptune · Schema

ExecuteOpenCypherExplainInput

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
query string The openCypher query to explain.
parameters string
explainMode string The explain mode (static, dynamic, or details).
View JSON Schema on GitHub

JSON Schema

amazon-neptune-executeopencypherexplaininput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecuteOpenCypherExplainInput",
  "title": "ExecuteOpenCypherExplainInput",
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "The openCypher query to explain."
    },
    "parameters": {
      "type": "string"
    },
    "explainMode": {
      "type": "string",
      "enum": [
        "static",
        "dynamic",
        "details"
      ],
      "description": "The explain mode (static, dynamic, or details)."
    }
  }
}