Amazon Neptune · Schema

ExecuteGremlinProfileInput

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
gremlin string The Gremlin traversal query string to profile.
results boolean Whether to include results in the profile output.
chop integer Maximum length of result string per entry.
serializer string The serialization format for results.
indexOps boolean Whether to include index operation details.
View JSON Schema on GitHub

JSON Schema

amazon-neptune-executegremlinprofileinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecuteGremlinProfileInput",
  "title": "ExecuteGremlinProfileInput",
  "type": "object",
  "required": [
    "gremlin"
  ],
  "properties": {
    "gremlin": {
      "type": "string",
      "description": "The Gremlin traversal query string to profile."
    },
    "results": {
      "type": "boolean",
      "description": "Whether to include results in the profile output."
    },
    "chop": {
      "type": "integer",
      "description": "Maximum length of result string per entry."
    },
    "serializer": {
      "type": "string",
      "description": "The serialization format for results."
    },
    "indexOps": {
      "type": "boolean",
      "description": "Whether to include index operation details."
    }
  }
}