Amazon Neptune · Schema

GremlinQueryStatusList

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
acceptedQueryCount integer The total number of accepted queries.
runningQueryCount integer The number of currently running queries.
queries array The list of running and waiting queries.
View JSON Schema on GitHub

JSON Schema

amazon-neptune-gremlinquerystatuslist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GremlinQueryStatusList",
  "title": "GremlinQueryStatusList",
  "type": "object",
  "properties": {
    "acceptedQueryCount": {
      "type": "integer",
      "description": "The total number of accepted queries."
    },
    "runningQueryCount": {
      "type": "integer",
      "description": "The number of currently running queries."
    },
    "queries": {
      "type": "array",
      "description": "The list of running and waiting queries.",
      "items": {
        "$ref": "#/components/schemas/GremlinQueryStatusDetail"
      }
    }
  }
}