Amazon Neptune · Schema

GremlinQueryStatus

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
queryId string
queryString string
queryEvalStats object
View JSON Schema on GitHub

JSON Schema

amazon-neptune-gremlinquerystatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GremlinQueryStatus",
  "title": "GremlinQueryStatus",
  "type": "object",
  "properties": {
    "queryId": {
      "type": "string"
    },
    "queryString": {
      "type": "string"
    },
    "queryEvalStats": {
      "type": "object",
      "properties": {
        "waited": {
          "type": "integer"
        },
        "elapsed": {
          "type": "integer"
        },
        "cancelled": {
          "type": "boolean"
        }
      }
    }
  }
}