Amazon Neptune · Schema
GremlinQueryStatusDetail
GremlinQueryStatusDetail schema from Neptune
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL
Properties
| Name | Type | Description |
|---|---|---|
| queryId | string | The unique query identifier. |
| queryString | string | The Gremlin traversal query string. |
| queryEvalStats | object | Query execution statistics. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/gremlin-gremlin-query-status-detail-schema.json",
"title": "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": "integer",
"description": "The time the query waited in the queue (milliseconds)."
},
"elapsed": {
"type": "integer",
"description": "The elapsed execution time (milliseconds)."
},
"cancelled": {
"type": "boolean",
"description": "Whether the query was cancelled."
},
"subqueries": {
"type": "object",
"description": "Statistics for subqueries, if any."
}
}
}
}
}