Skip to content

Get Open Cypher Query Status

neptunedata_get_open_cypher_query_status R Documentation

Retrieves the status of a specified openCypher query

Description

Retrieves the status of a specified openCypher query.

When invoking this operation in a Neptune cluster that has IAM authentication enabled, the IAM user or role making the request must have a policy attached that allows the neptune-db:GetQueryStatus IAM action in that cluster.

Note that the neptune-db:QueryLanguage:OpenCypher IAM condition key can be used in the policy document to restrict the use of openCypher queries (see Condition keys available in Neptune IAM data-access policy statements).

Usage

neptunedata_get_open_cypher_query_status(queryId)

Arguments

queryId

[required] The unique ID of the openCypher query for which to retrieve the query status.

Value

A list with the following syntax:

list(
  queryId = "string",
  queryString = "string",
  queryEvalStats = list(
    waited = 123,
    elapsed = 123,
    cancelled = TRUE|FALSE,
    subqueries = list()
  )
)

Request syntax

svc$get_open_cypher_query_status(
  queryId = "string"
)