Amazon Neptune · JSON Structure

Gremlin Gremlin Query Status Detail Structure

GremlinQueryStatusDetail schema from Neptune

Type: object Properties: 3
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

GremlinQueryStatusDetail is a JSON Structure definition published by Amazon Neptune, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

queryId queryString queryEvalStats

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-structure/gremlin-gremlin-query-status-detail-structure.json",
  "name": "GremlinQueryStatusDetail",
  "description": "GremlinQueryStatusDetail schema from Neptune",
  "type": "object",
  "properties": {
    "queryId": {
      "type": "string",
      "description": "The unique query identifier."
    },
    "queryString": {
      "type": "string",
      "description": "The Gremlin traversal query string."
    },
    "queryEvalStats": {
      "type": "object",
      "description": "Query execution statistics.",
      "properties": {
        "waited": {
          "type": "int32",
          "description": "The time the query waited in the queue (milliseconds)."
        },
        "elapsed": {
          "type": "int32",
          "description": "The elapsed execution time (milliseconds)."
        },
        "cancelled": {
          "type": "boolean",
          "description": "Whether the query was cancelled."
        },
        "subqueries": {
          "type": "object",
          "description": "Statistics for subqueries, if any."
        }
      }
    }
  }
}