Amazon Neptune · Arazzo Workflow

Amazon Neptune Analytics Reset Graph

Version 1.0.0

Empty a Neptune Analytics graph of all data, then wait until it is AVAILABLE again.

1 workflow 1 source API 1 provider
View Spec View on GitHub DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQLArazzoWorkflows

Provider

amazon-neptune

Workflows

analytics-reset-graph
Reset a graph's data and poll until it is AVAILABLE again.
Confirms the graph is available, resets all data, then polls until the graph returns to AVAILABLE.
3 steps inputs: graphIdentifier outputs: graphIdentifier, status
1
confirmGraph
Confirm the graph exists and capture its current status before resetting.
2
resetGraph
Empty all data from the graph. performCleanData must be true to confirm the destructive reset.
3
pollGraph
Poll the graph. Retry while the status is RESETTING and finish once it returns to AVAILABLE.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Neptune Analytics Reset Graph
  summary: Empty a Neptune Analytics graph of all data, then wait until it is AVAILABLE again.
  description: >-
    A fast-reset workflow for Neptune Analytics that removes all nodes and edges
    while keeping the graph resource and its configuration. The workflow confirms
    the graph exists and is AVAILABLE, issues the reset with the required
    performCleanData confirmation, and polls the graph until it returns to the
    AVAILABLE status after the RESETTING state. The poll loop uses a retry delay.
    Every step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-600.50
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-600.50
      capability_name: IT Infrastructure Management
      spec: amazon-neptune-graphs-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: graphsApi
  url: ../openapi/amazon-neptune-graphs-api-openapi.yml
  type: openapi
workflows:
- workflowId: analytics-reset-graph
  summary: Reset a graph's data and poll until it is AVAILABLE again.
  description: >-
    Confirms the graph is available, resets all data, then polls until the graph
    returns to AVAILABLE.
  inputs:
    type: object
    required:
    - graphIdentifier
    properties:
      graphIdentifier:
        type: string
        description: The unique identifier of the graph to reset.
  steps:
  - stepId: confirmGraph
    description: >-
      Confirm the graph exists and capture its current status before resetting.
    operationId: getGraph
    parameters:
    - name: graphIdentifier
      in: path
      value: $inputs.graphIdentifier
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentStatus: $response.body#/status
  - stepId: resetGraph
    description: >-
      Empty all data from the graph. performCleanData must be true to confirm
      the destructive reset.
    operationId: resetGraph
    parameters:
    - name: graphIdentifier
      in: path
      value: $inputs.graphIdentifier
    requestBody:
      contentType: application/json
      payload:
        performCleanData: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      resetStatus: $response.body#/status
  - stepId: pollGraph
    description: >-
      Poll the graph. Retry while the status is RESETTING and finish once it
      returns to AVAILABLE.
    operationId: getGraph
    parameters:
    - name: graphIdentifier
      in: path
      value: $inputs.graphIdentifier
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
    onSuccess:
    - name: resetInProgress
      type: retry
      retryAfter: 20
      retryLimit: 60
      criteria:
      - context: $response.body
        condition: $.status == "RESETTING"
        type: jsonpath
    - name: resetDone
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "AVAILABLE"
        type: jsonpath
  outputs:
    graphIdentifier: $inputs.graphIdentifier
    status: $steps.pollGraph.outputs.status

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/amazon-neptune-analytics-reset-graph-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.