Amazon Neptune · Schema

GremlinQueryRequest

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
gremlin string The Gremlin traversal query string. Must be a valid Gremlin traversal starting with g. The bindings property is not supported by Neptune.
View JSON Schema on GitHub

JSON Schema

amazon-neptune-gremlinqueryrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GremlinQueryRequest",
  "title": "GremlinQueryRequest",
  "type": "object",
  "required": [
    "gremlin"
  ],
  "properties": {
    "gremlin": {
      "type": "string",
      "description": "The Gremlin traversal query string. Must be a valid Gremlin traversal starting with g. The bindings property is not supported by Neptune.",
      "examples": [
        "g.V().count()",
        "g.V().has('name','John').out('knows')"
      ]
    }
  }
}