Amazon Neptune · JSON Structure

Data Gremlin Query Status Structure

GremlinQueryStatus schema from Neptune

Type: object Properties: 3
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

GremlinQueryStatus 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/data-gremlin-query-status-structure.json",
  "name": "GremlinQueryStatus",
  "description": "GremlinQueryStatus schema from Neptune",
  "type": "object",
  "properties": {
    "queryId": {
      "type": "string"
    },
    "queryString": {
      "type": "string"
    },
    "queryEvalStats": {
      "type": "object",
      "properties": {
        "waited": {
          "type": "int32"
        },
        "elapsed": {
          "type": "int32"
        },
        "cancelled": {
          "type": "boolean"
        }
      }
    }
  }
}