Skip to content

Get Propertygraph Statistics

neptunedata_get_propertygraph_statistics R Documentation

Gets property graph statistics (Gremlin and openCypher)

Description

Gets property graph statistics (Gremlin and openCypher).

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:GetStatisticsStatus IAM action in that cluster.

Usage

neptunedata_get_propertygraph_statistics()

Value

A list with the following syntax:

list(
  status = "string",
  payload = list(
    autoCompute = TRUE|FALSE,
    active = TRUE|FALSE,
    statisticsId = "string",
    date = as.POSIXct(
      "2015-01-01"
    ),
    note = "string",
    signatureInfo = list(
      signatureCount = 123,
      instanceCount = 123,
      predicateCount = 123
    )
  )
)