Amazon Neptune · Schema

ExecuteGremlinProfileInput

ExecuteGremlinProfileInput schema from Neptune

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

data-execute-gremlin-profile-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/data-execute-gremlin-profile-input-schema.json",
  "title": "ExecuteGremlinProfileInput",
  "description": "ExecuteGremlinProfileInput schema from Neptune",
  "type": "object",
  "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."
    }
  },
  "required": [
    "gremlin"
  ]
}